-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hole not at the current workplane #1709
Comments
You changed the workplane here |
Thanks, but I changed it back later with |
Are you maybe confusing workplane and selection? |
Possibly. But https://cadquery.readthedocs.io/en/latest/classreference.html#cadquery.Workplane.hole says
Arguably "the surface" is ambiguous but I understood it as the "surface" that one would drill through during the manufacturing. Can you please clarify? |
Okay so adding a 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").workplane()
a = a.hole(2) I am probably still a bit confused between workplane and selection, but at least I can move forward and learn. |
The following
generates
in which the hole is rotated 90 degrees from the current workplane.
Is this a bug or am I doing something incorrect?
The text was updated successfully, but these errors were encountered: