feat: Use a more complicated primitive

This commit is contained in:
Leni Aniva 2024-06-17 15:37:23 -07:00
parent d1c48975ad
commit c8613b5f18
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,12 @@
import cadquery
import cadquery as Cq
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)
)