From a16745ba671c17963897495c0923e53f63252ba7 Mon Sep 17 00:00:00 2001 From: Jan Huwald Date: Sat, 31 Jan 2015 12:08:56 +0100 Subject: 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. 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) -- cgit v0.10.1