From 41e2e339af3ef4b0dd62a050102601a0ed6a02b9 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Sat, 18 Jul 2026 13:53:38 +0200 Subject: New design: counter / token with a hole --- lib/extra.scad | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/extra.scad (limited to 'lib/extra.scad') diff --git a/lib/extra.scad b/lib/extra.scad new file mode 100644 index 0000000..f9bd52c --- /dev/null +++ b/lib/extra.scad @@ -0,0 +1,12 @@ +use + +module token(r, f=8, h=2) { + difference() { + union() { for ( i = [0:f-1] ) { + rotate([0, 0, 360 * i / f]) translate([r / 3, 0, 0]) cylinder(r=r * 2 / 3, h=h, $fn=64); + }} + union() { for (i = [0:f-1]) { + rotate([0, 0, 360 * i / f]) translate([0, 0, -1]) cube([r/3, r/3, h + 2]); + }} + } +} -- cgit v1.2.3