cadquery icon indicating copy to clipboard operation
cadquery copied to clipboard

Hole not at the current workplane

Open davidedelvento opened this issue 11 months ago • 5 comments

The following

a = Workplane("XY")
a = a.box(9, 20, 4)
a = a.faces("<Y")
a = a.workplane()
a = a.rect(4,4).extrude(13)
a = a.faces(">X")
a = a.hole(2)

generates

image

in which the hole is rotated 90 degrees from the current workplane.

Is this a bug or am I doing something incorrect?

davidedelvento avatar Nov 23 '24 21:11 davidedelvento