From: Ian Jackson Date: Sun, 20 Apr 2025 22:13:54 +0000 (+0100) Subject: toolbox-inserts: gaps, height X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fed538c72a01357e6693ecbdd04c81e3f6d10bb0;p=reprap-play.git toolbox-inserts: gaps, height Signed-off-by: Ian Jackson --- diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 9d09851..0d3b2f2 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -3,6 +3,7 @@ include well_surround_wall = 2.5; +well_stiffening_height = 5; driver_handle_shaft_l = 68.2 + 0.75; driver_handle_total_l = 152.8 + 0.75; @@ -59,7 +60,7 @@ module WellSurround(half_height, gaps, wall=well_surround_wall) { for (gap=gaps) { linextr_x_yz(gap[0] - wall/2, gap[1] + wall/2) - rectfromto([ -100, -wall/2 ], [ 100,100 ]); + rectfromto([ -100, -wall/2 + well_stiffening_height ], [ 100,100 ]); } } }