chiark / gitweb /
toolbox-inserts: fix wall size
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 20 Apr 2025 17:48:49 +0000 (18:48 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 20 Apr 2025 17:48:54 +0000 (18:48 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
toolbox-inserts.scad

index 9baf0845c171950229c12597174bba17b5d8839c..b41e6c4bcd5ce33b854b4c2011d025e20b160ee7 100644 (file)
@@ -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);