mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-15 15:20:37 -08:00
Introduced with notation for workplanes and points
This commit is contained in:
parent
81a6a2bde3
commit
69abdd9c45
19 changed files with 660 additions and 481 deletions
9
examples/boxes_on_faces.py
Normal file
9
examples/boxes_on_faces.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import build123d as bd
|
||||
|
||||
with bd.BuildPart() as bp:
|
||||
bd.Box(3, 3, 3)
|
||||
with bd.Workplanes(*bp.faces()):
|
||||
bd.Box(1, 2, 0.1, rotation=(0, 0, 45))
|
||||
|
||||
if "show_object" in locals():
|
||||
show_object(bp.part, name="box on faces")
|
||||
Loading…
Add table
Add a link
Reference in a new issue