diff --git a/example.py b/example.py new file mode 100644 index 0000000..d2eb44e --- /dev/null +++ b/example.py @@ -0,0 +1,11 @@ +from ocp_vscode import * +from build123d import * +set_port(3939) + +with BuildPart() as box: + with BuildSketch() as sk_box: + Rectangle(10.0, 15.0) + extrude(amount=4.0) + fillet(box.edges().filter_by(Axis.Z), radius=2) + +show(box)