From 8162985aa5ee2e7d96b5fb7742ee94ad06bf639a Mon Sep 17 00:00:00 2001 From: Tomas Mudrunka Date: Fri, 25 Oct 2024 12:45:01 +0200 Subject: [PATCH] nicer shape of cavity --- openscad/planter4.scad | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/openscad/planter4.scad b/openscad/planter4.scad index e3e750e..59e5285 100644 --- a/openscad/planter4.scad +++ b/openscad/planter4.scad @@ -1,8 +1,8 @@ module planter_cavity(void=0, da=70, db=83) { 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); + hull() { + translate([0,0,73]) cylinder(d1=db-2, d2=db, h=10, $fn=12); + cylinder(d1=da-5, d2=da, h=5, $fn=64); } if(void) translate([0,0,-14.1+2.5]) scale([0.97,0.97,1]) planter_cavity(); } @@ -50,6 +50,7 @@ difference() { } //planter(); +//planter_cavity(); planter_cavity(3); rotate([180,0,0]) { -- 2.30.2