From: Lukáš Jiřiště Date: Sat, 12 Sep 2026 17:34:35 +0000 (+0200) Subject: Make the space for ring just so X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=767cde85f8516496f7c2b5dc2e17ffe56ea2d926;p=organizer.git Make the space for ring just so The keying could be created on the inside, so there is no need for the additional space above the ring. --- diff --git a/skeleton_cell.scad b/skeleton_cell.scad index 73c030a..23e8c04 100644 --- a/skeleton_cell.scad +++ b/skeleton_cell.scad @@ -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); }; }