Files
CAD-bestanden/boxMetRondeHoeken.py
2024-12-17 13:51:30 +01:00

12 lines
215 B
Python

from ocp_vscode import *
import build123d as b3d
set_port(3939)
#with BuildPart() as box:
# with BuildSketch as sk_box:
# Rectangle(10, 10)
# extrude(4)
block = b3d.Box(10, 10, 4)
show(rounded_block)