From: Lukáš Jiřiště Date: Sat, 12 Sep 2026 15:46:04 +0000 (+0200) Subject: Add clearance to rail length, decrease clearance X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=a2f5295c5c79e17a2b4770668b76b845e13b2804;p=organizer.git Add clearance to rail length, decrease clearance --- diff --git a/skeleton_cell.scad b/skeleton_cell.scad index 0aaa82a..73c030a 100644 --- a/skeleton_cell.scad +++ b/skeleton_cell.scad @@ -1,4 +1,4 @@ -fit_clearance = 0.5; +fit_clearance = 0.1; width = 50; height = 50; @@ -52,16 +52,16 @@ module rails(dims, thickness, fit_clearance) { translate([dims.x / 2, dims.y / 2]) mirror([1, 1, 0]) - rail(dims.z - thickness, thickness - fit_clearance); + rail(dims.z - thickness - fit_clearance, thickness - fit_clearance); translate([- (dims.x / 2 - thickness), - (dims.y / 2 - thickness)]) mirror([1, 1, 0]) - rail(dims.z - thickness, thickness - fit_clearance); + rail(dims.z - thickness - fit_clearance, thickness - fit_clearance); translate([dims.x / 2, - dims.y / 2]) mirror([1, 0, 0]) - rail(dims.z - thickness, thickness - fit_clearance); + rail(dims.z - thickness - fit_clearance, thickness - fit_clearance); translate([- (dims.x / 2 - thickness), dims.y / 2 - thickness]) mirror([1, 0, 0]) - rail(dims.z - thickness, thickness - fit_clearance); + rail(dims.z - thickness - fit_clearance, thickness - fit_clearance); } module half_cage()