Cosplay/nhf/touhou/houjuu_nue/__init__.py

18 lines
361 B
Python
Raw Normal View History

2024-06-19 15:54:09 -07:00
import cadquery as Cq
def mystery():
return (
Cq.Workplane()
.box(1, 1, 1)
.tag("base")
.wires(">Z")
.toPending()
.translate((0.1, 0.1, 1.0))
.toPending()
.loft()
.faces(">>X", tag="base")
.workplane(centerOption="CenterOfMass")
.circle(0.2)
.extrude(3)
)