diff options
author | Jan Huwald <jh@sotun.de> | 2015-01-31 11:08:56 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-01-31 11:08:56 (GMT) |
commit | a16745ba671c17963897495c0923e53f63252ba7 (patch) | |
tree | 2d0629a43f36c892de0668c00290f13234c1270c /gimbal.scad | |
parent | 89016ea75f85c103a7df90ac76cdbe2a4fdbc8a7 (diff) |
change intro region to absolute minimum size
The previous shape created small fins the easily break: a small force
on the payload is levered to a large force on the fin.
Diffstat (limited to 'gimbal.scad')
-rw-r--r-- | gimbal.scad | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gimbal.scad b/gimbal.scad index 05db4a8..d16f6e0 100644 --- a/gimbal.scad +++ b/gimbal.scad @@ -100,8 +100,12 @@ module shell() { } // add intro region - translate([0, 0, d]) - cube([d-2*cutoff, d*2, 2*d], center=true); + intersection() { + cylinder(r=d/2, h=2*d); + + 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) |