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