diff options
author | Jan Huwald <jh@sotun.de> | 2015-01-26 11:52:26 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-01-26 11:52:26 (GMT) |
commit | e444508ca02ec3c4e7ee5d18179e7a182b82acd2 (patch) | |
tree | b1cf0754bf9e0ab78b76737b2fabe42fa6141d50 | |
parent | 3e67da7f9c7fcb528337e9a801f4abf9e9d39a49 (diff) |
improve exploded view
-rw-r--r-- | gimbal.scad | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gimbal.scad b/gimbal.scad index ff13158..c3282b9 100644 --- a/gimbal.scad +++ b/gimbal.scad @@ -141,6 +141,14 @@ module shell_lower() shell_splitter(); } -translate([0, 0, -3*base]) shell_lower(); -shell_upper(); -translate([0,0,20]) rotate([90, 0, 90]) ball(); +module exploded_view() { + translate([0, 0, -2*base]) shell_lower(); + shell_upper(); + translate([0,0,20]) rotate([90, 0, 90]) ball(); + + translate([-0.7*d - c - screw_len, 0, 20]) + rotate(90) + two_half_screws(); +} + +exploded_view(); |