diff options
Diffstat (limited to 'gimbal.scad')
-rw-r--r-- | gimbal.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gimbal.scad b/gimbal.scad index 03a524a..078a055 100644 --- a/gimbal.scad +++ b/gimbal.scad @@ -20,7 +20,7 @@ module screw() { module ball() difference() { sphere(d/2); - # translate([0, 0, d/2 - cutoff - screw_len + e]) screw(); + translate([0, 0, d/2 - cutoff - screw_len + e]) screw(); for (i = [-1,1]) translate([0, 0, i * (d - cutoff)]) cube(d, center=true); } @@ -47,7 +47,7 @@ module shell() { assign(rh=mount_screw_head_dia) union() { cylinder(r=rs/2, h=3*(d+base), center=true); - # translate([0, 0, -d/2-rh]) cylinder(r1=0, r2=rh/2, h=rh); + translate([0, 0, -d/2-rh]) cylinder(r1=0, r2=rh/2, h=rh); translate([0, 0, -d/2 ]) cylinder(r=rh/2, h=d); } } |