From 6f26dbfb0c2b30a61dd6d6109979b4f4ecf152ea Mon Sep 17 00:00:00 2001 From: wes Date: Tue, 23 Apr 2024 13:28:02 -0400 Subject: [PATCH] scale plate down a bit --- planter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/planter.py b/planter.py index 9063094..b7ca2d6 100644 --- a/planter.py +++ b/planter.py @@ -72,7 +72,7 @@ result = ( ) circle_plate = Workplane().cylinder( - plate_thickness, planter_radius * 0.56 + plate_thickness, planter_radius * 0.538 ) # enough to fit 0.58 # Split this out into a different part @@ -154,10 +154,10 @@ assembly = cq.Assembly() assembly.add(screw_result, loc=cq.Location((0, 0, 0))) assembly.add(result, loc=cq.Location((100, 100, 100))) -assembly.add(circle_plate, loc=cq.Location((1100, 1100, 1100))) +assembly.add(circle_plate, loc=cq.Location((-100, -100, -100))) try: - show_object(screw_result) + show_object(assembly) except NameError: pass