From: Tomas Mudrunka Date: Fri, 25 Oct 2024 09:58:22 +0000 (+0200) Subject: Clearance fix X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;h=3822ee406eb5e6a63b752af6ff5a2811e876e5f6;p=mirrors%2FDesigns.git Clearance fix --- diff --git a/openscad/planter4.scad b/openscad/planter4.scad index 1fb3ddf..e3e750e 100644 --- a/openscad/planter4.scad +++ b/openscad/planter4.scad @@ -1,10 +1,10 @@ module planter_cavity(void=0, da=70, db=83) { - translate([0,0,15]) difference() { + translate([0,0,14.1]) difference() { intersection() { cylinder(d1=da, d2=db, h=83, $fn=12); cylinder(d1=da-5, d2=db*2, h=83, $fn=12); } - if(void) translate([0,0,-15+1.5]) scale([0.95,0.95,1]) planter_cavity(); + if(void) translate([0,0,-14.1+2.5]) scale([0.97,0.97,1]) planter_cavity(); } } @@ -43,7 +43,7 @@ difference() { translate([ 0,0,97/2]) cube([120,4,96.99], center=true); } rotate([0,0,90]) planter(); - rotate([0,0,90]) planter_cavity(); + rotate([0,0,90]) scale([1.01,1.01,1]) planter_cavity(); if(half == 1) translate([-100,0,0]) cube(200); if(half == 2) translate([-100,-200,0]) cube(200); } @@ -55,4 +55,4 @@ planter_cavity(3); rotate([180,0,0]) { translate([0,-12,0]) planter_mold(half=1); translate([0,12,0]) planter_mold(half=2); -} \ No newline at end of file +}