Cosplay/nhf/primitive.py

13 lines
206 B
Python
Raw Normal View History

2024-06-17 15:37:23 -07:00
import cadquery as Cq
def mystery():
2024-06-17 15:37:23 -07:00
return (
Cq.Workplane("XY")
.box(10, 5, 5)
.faces(">Z")
.workplane()
.hole(1)
.edges("|Z")
.fillet(2)
)