diff options
author | Jan Huwald <jh@sotun.de> | 2015-01-22 10:11:05 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-01-22 10:11:05 (GMT) |
commit | 8141baf7df063e911e4aa57d522392854d814760 (patch) | |
tree | 5b315cd6d8dd1e346f4e91f5eda0a3db0f0e3cb9 | |
parent | f05450ca15e92e03d657e1b2900e16dfedc7860a (diff) |
add option to remove sphere and ease insertion
-rw-r--r-- | gimbal.scad | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gimbal.scad b/gimbal.scad index 078a055..0227c63 100644 --- a/gimbal.scad +++ b/gimbal.scad @@ -42,6 +42,14 @@ module shell() { translate([0, 0, d]) cube([d-2*cutoff, d*2, 2*d], center=true); + // path for 1/4" screw; lets you rotate the sphere after + // pushing it in (and allows later removal of it) + hull() { + cylinder(r=screw_dia/2, h=d); + rotate([90, 0, 90]) + cylinder(r=screw_dia/2, h=d); + } + // mounting screw hole assign(rs=mount_screw_dia) assign(rh=mount_screw_head_dia) |