Files
project-templates/build123d/template/build3d.py
T

9 lines
227 B
Python

from build123d import * # pyright: ignore[reportWildcardImportFromLibrary]
length, width, thickness = 80.0, 60.0, 10.0
with BuildPart() as builder:
Box(length, width, thickness)
export_step(builder.part, "output.step")