diff options
author | Jan Huwald <jh@sotun.de> | 2015-01-26 15:04:39 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-01-26 15:04:39 (GMT) |
commit | b4c8fb1df67e4c6fbf11f6f9b68017abfb01068e (patch) | |
tree | faf2d2a04bf5b4ee6b5d29271371658f742ad8d7 /gimbal.scad | |
parent | 38c5ae47ad14c36e04299aba0e0d826d8f97cc14 (diff) |
add 0.2mm tolerance between shell parts
Diffstat (limited to 'gimbal.scad')
-rw-r--r-- | gimbal.scad | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gimbal.scad b/gimbal.scad index 666c35c..fb12c65 100644 --- a/gimbal.scad +++ b/gimbal.scad @@ -14,6 +14,7 @@ mount_screw_head_dia = 10; // retainer wire hole diameter retainer_dia = 1; +splitter_tolerance = 0.2; e = 0.01; $fn = 500; @@ -117,9 +118,9 @@ module shell() { } } -module shell_splitter() +module shell_splitter(e2=0) assign(w1 = d + 2*c + e) - assign(w2 = mount_screw_head_dia + 2*c) + assign(w2 = mount_screw_head_dia + 2*c + e2) assign(h = base + c) translate([-w1/2, -w2/2, -h - d/2]) { cube([w1, w2, 2/3*h+e]); @@ -136,7 +137,7 @@ module shell_splitter() module shell_upper() difference() { shell(); - translate([0, 0, -e]) shell_splitter(); + translate([0, 0, -e]) shell_splitter(splitter_tolerance); } module shell_lower() |