From: Ian Jackson Date: Sun, 20 Apr 2025 18:45:31 +0000 (+0100) Subject: toolbox-inserts: gaps, fix extent X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a105611081af09cb26fe133bc6179d7ddab45826;p=reprap-play.git toolbox-inserts: gaps, fix extent Signed-off-by: Ian Jackson --- diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 579aa6a..961df0d 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -58,7 +58,7 @@ module WellSurround(half_height, gaps, wall=well_surround_wall) { } for (gap=gaps) { - linextr_x_yz(gap[0] + wall/2, gap[1] - wall/2) + linextr_x_yz(gap[0] - wall/2, gap[1] + wall/2) rectfromto([ -100, -wall/2 ], [ 100,100 ]); } }