Skip to content

Instantly share code, notes, and snippets.

@scruss
Created April 23, 2025 17:09
Show Gist options
  • Save scruss/05cfe5876d6483e5ce02e68b8775a98c to your computer and use it in GitHub Desktop.
Save scruss/05cfe5876d6483e5ce02e68b8775a98c to your computer and use it in GitHub Desktop.
Paper template for Hoot-Nanny / Magic Designer drawing toy
// hoot-nanny paper - scruss, 2022-02
$fn = 192;
in = 25.4;
paper_diameter = in * (5 + 3 / 4); // 146.050 mm
hole_diameter = in / 4; // 6.350 mm
hole_pcd = in * (5 + 29 / 32); // 150.019 mm
difference() {
circle(d = paper_diameter);
for (i = [0:2]) {
rotate(i * 120) translate([ hole_pcd / 2, 0, 0 ])
circle(d = hole_diameter);
}
}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment