From 6bc20a40e4af222ef8a7e2cb43feeec71d945cfc Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 20 Apr 2025 18:48:49 +0100 Subject: [PATCH] toolbox-inserts: fix wall size Signed-off-by: Ian Jackson --- toolbox-inserts.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index 9baf084..b41e6c4 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -24,7 +24,7 @@ module DriverHandlePositive() { ////toplevel } module WallMinkowskiSphere(wall=well_surround_wall) { ////toplevel - sphere($fn=8, r=wall/2); + sphere($fn=8, r=wall); } module WellSurround(half_height, wall=well_surround_wall) { @@ -41,7 +41,7 @@ module WellSurround(half_height, wall=well_surround_wall) { union(){ minkowski(){ - linextr(0, half_height - wall/2) + linextr(0, half_height - wall) projection(cut=false) children(0); WallMinkowskiSphere(wall); -- 2.30.2