feat: Use a more complicated primitive
This commit is contained in:
parent
d1c48975ad
commit
c8613b5f18
|
@ -1,4 +1,12 @@
|
||||||
import cadquery
|
import cadquery as Cq
|
||||||
|
|
||||||
def mystery():
|
def mystery():
|
||||||
return cadquery.Workplane().box(10, 5, 5)
|
return (
|
||||||
|
Cq.Workplane("XY")
|
||||||
|
.box(10, 5, 5)
|
||||||
|
.faces(">Z")
|
||||||
|
.workplane()
|
||||||
|
.hole(1)
|
||||||
|
.edges("|Z")
|
||||||
|
.fillet(2)
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue