From af9ffa317ef7aaaf7ef24ffde3ab83199aac61f8 Mon Sep 17 00:00:00 2001 From: wes Date: Wed, 24 Apr 2024 04:41:09 -0400 Subject: [PATCH] double size of bottom --- planter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/planter.py b/planter.py index b7ca2d6..50c0370 100644 --- a/planter.py +++ b/planter.py @@ -143,11 +143,11 @@ result = result.union(cut_tapered) result = ( result.workplane(offset=(planter_height / 2) - 25) .makePolygon(bottom_polygon) - .extrude(5) + .extrude(10) ) result = result.workplane(offset=(planter_height / 2) - 25).cylinder( - 8, bottom_radius / 3, combine="cut" + 17, bottom_radius / 3, combine="cut" ) assembly = cq.Assembly() @@ -157,7 +157,7 @@ assembly.add(result, loc=cq.Location((100, 100, 100))) assembly.add(circle_plate, loc=cq.Location((-100, -100, -100))) try: - show_object(assembly) + show_object(result) except NameError: pass