diff options
-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(); |