Refactored all operations to be functions

This commit is contained in:
Roger Maitland 2023-03-22 16:34:00 -04:00
parent 85b3aa5b09
commit 186ca1f821
35 changed files with 308 additions and 789 deletions

View file

@ -39,7 +39,7 @@ with BuildPart() as pcb:
Circle(1, mode=Mode.SUBTRACT)
with GridLocations(60, 20, 2, 2):
Circle(2, mode=Mode.SUBTRACT)
Extrude(amount=3)
extrude(amount=3)
if "show_object" in locals():
show_object(pcb.part.wrapped)