mirror of
https://github.com/gumyr/build123d.git
synced 2026-02-19 14:22:38 -08:00
11 lines
274 B
Python
11 lines
274 B
Python
from build123d.build123d_common import *
|
|
from build123d.build_part import *
|
|
|
|
with BuildPart() as obj:
|
|
Box(5, 5, 1)
|
|
WorkplanesFromFaces(*obj.faces().filter_by_axis(Axis.Z))
|
|
Sphere(1.8, mode=Mode.SUBTRACT)
|
|
|
|
if "show_object" in locals():
|
|
show_object(obj.part)
|
|
|