diff --git a/CASE/screw_spacer.scad b/CASE/screw_spacer.scad index 969504a..a947949 100644 --- a/CASE/screw_spacer.scad +++ b/CASE/screw_spacer.scad @@ -1,21 +1,16 @@ $fn=64; -spacer([0,0,0]); -spacer([8,0,0]); -spacer([16,0,0]); -spacer([24,0,0]); -spacer([32,0,0]); -spacer([40,0,0]); - +for (i=[0:6]) { + spacer([i*9,0,0]); +} module spacer(pos) { translate(pos) union() { difference() { - cylinder(d=6.5,h=3.5); + cylinder(d=7,h=3.5); translate([0,0,-1]) cylinder(d=3.5,h=10); } translate([2,-1,]) cube([4,2,0.3]); } } - \ No newline at end of file diff --git a/PRODUCTION/screw_spacer.stl b/PRODUCTION/screw_spacer.stl index dda3e1b..5e8e06d 100644 Binary files a/PRODUCTION/screw_spacer.stl and b/PRODUCTION/screw_spacer.stl differ