From 0740bbcfc20bf323345fdbe2250c455ae8706492 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 22 Jul 2016 16:27:50 +0100 Subject: [PATCH] trackpump-mutlihead-clip: pumpside mostly done --- trackpump-mutlihead-clip.scad | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/trackpump-mutlihead-clip.scad b/trackpump-mutlihead-clip.scad index 15ecc7e..a6d1bbd 100644 --- a/trackpump-mutlihead-clip.scad +++ b/trackpump-mutlihead-clip.scad @@ -29,7 +29,6 @@ module PumpSidePlan() { } translate([-xm, -or]) square([xm, or*2]); } - translate([-xm, 0]) circle(r=pump_main_dia/2); translate([-xm*2, 0]) square(center=true, [pump_side_width*3, pump_shaft_dia]); } @@ -67,14 +66,19 @@ module PumpSideElevation(){ } module PumpSide(){ - intersection(){ - translate([0,100,0]) - rotate([90,0,0]) - linear_extrude(height=200) + difference(){ + intersection(){ + translate([0,100,0]) + rotate([90,0,0]) + linear_extrude(height=200) PumpSideElevation(); - translate([0,0,-100]) - linear_extrude(height=200) - PumpSidePlan(); + translate([0,0,-100]) + linear_extrude(height=200) + PumpSidePlan(); + } + translate([-(baseplate + pump_main_dia/2), 0, + -(pump_side_thick + pump_side_height)]) + cylinder(r=pump_main_dia/2, h=200); } } -- 2.30.2