From: Ian Jackson Date: Mon, 21 Apr 2025 10:33:29 +0000 (+0100) Subject: toolbox-inserts: WellSurround: offset X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=af4268c4da47049e3903800516711b0b09337986;p=reprap-play.git toolbox-inserts: WellSurround: offset Signed-off-by: Ian Jackson --- diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 11b762b..f275da6 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -41,6 +41,7 @@ module WallMinkowskiSphere(wall=well_surround_wall) { ////toplevel module WellSurround( half_height, gaps, + offset, wall=well_surround_wall ) { // WellSurround(half_height, gaps[ @@ -59,7 +60,7 @@ module WellSurround( // minkowski(){ // WallMinkowskiSphere(wall); - difference(){ + translate(concat(offset, [0])) difference(){ linextr(-10, half_height) offset($fn=8, r = wall) projection(cut=false) @@ -86,7 +87,7 @@ module DriverHandleHolder() { ////toplevel WellSurround(driver_handle_handle_d/2, [ [ 15, driver_handle_shaft_l - 15 ], [ driver_handle_shaft_l + 15, driver_handle_shaft_l + 45 ], - ]) + ], [], offset=[-5, 0]) DriverHandlePositive(); }