]> www.ljiriste.work Git - organizer.git/commitdiff
Add clearance to rail length, decrease clearance
authorLukáš Jiřiště <redacted>
Sat, 12 Sep 2026 15:46:04 +0000 (17:46 +0200)
committerLukáš Jiřiště <redacted>
Sat, 12 Sep 2026 15:46:04 +0000 (17:46 +0200)
skeleton_cell.scad

index 0aaa82adab2e7abd71e15030c3615a7c71db2a80..73c030a6ac44c9554b457721783690a17b686845 100644 (file)
@@ -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()