]> www.ljiriste.work Git - organizer.git/commitdiff
Make the space for ring just so
authorLukáš Jiřiště <redacted>
Sat, 12 Sep 2026 17:34:35 +0000 (19:34 +0200)
committerLukáš Jiřiště <redacted>
Sat, 12 Sep 2026 17:34:35 +0000 (19:34 +0200)
The keying could be created on the inside, so there is no need for the
additional space above the ring.

skeleton_cell.scad

index 73c030a6ac44c9554b457721783690a17b686845..23e8c043e244a29c95e4fca7c6b4f3ae795d5c32 100644 (file)
@@ -7,7 +7,7 @@ depth = 100;
 thickness = 2;
 
 ring_height = thickness;
-ring_pos = thickness;
+ring_pos = 0;
 
 ring_clearance = ring_height + ring_pos;
 ring_thickness = thickness / 2;
@@ -37,7 +37,7 @@ module ring(width, depth, ring_thickness, ring_height)
        linear_extrude(ring_height)
                difference()
                {
-                       square([width, depth], center=true);
+                       square([width, depth], center = true);
                        square([width - 2 * ring_thickness, depth - 2 * ring_thickness], center = true);
                };
 }