initial commit

This commit is contained in:
2026-07-19 17:55:28 -05:00
commit da7094693d
5 changed files with 624 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# pyright: reportUnusedCallResult=false, reportWildcardImportFromLibrary=false
from build123d import *
length, width, thickness = 80.0, 60.0, 10.0
with BuildPart() as builder:
Box(length, width, thickness)
assert builder.part is not None
export_step(builder.part, "output.step")