Created
April 23, 2025 17:09
-
-
Save scruss/05cfe5876d6483e5ce02e68b8775a98c to your computer and use it in GitHub Desktop.
Paper template for Hoot-Nanny / Magic Designer drawing toy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment