We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I wrote this code:
length = 80.0 height = 60.0 thickness = 10.0 center_hole_dia = 22.0 result = (cq.Workplane("XY").box(length, height, thickness,(False,False,False)) .faces(">Z").workplane().hole(center_hole_dia))
I run this code in CQ-Editor that download from CI. https://github.com/jmwright/CQ-editor/actions
When I run this code in CQ-Editor build 48 (build on Mon, 30 Nov 2020 19:14:31 GMT), It created this model.
When I run this code in CQ-Editor build 50 (build on Wed, 20 Jan 2021 18:43:37 GMT), it created this model.
Is this change intended? I'm afraid this change back again?
The text was updated successfully, but these errors were encountered:
Yes, take a look at changes.md and #532 - the default centerOption changed. You can go back to the old behavior like so:
changes.md
centerOption
length = 80.0 height = 60.0 thickness = 10.0 center_hole_dia = 22.0 result = (cq.Workplane("XY").box(length, height, thickness,(False,False,False)) .faces(">Z").workplane(centerOption='CenterOfMass').hole(center_hole_dia))
Sorry, something went wrong.
Thanks!
No branches or pull requests
I wrote this code:
I run this code in CQ-Editor that download from CI.
https://github.com/jmwright/CQ-editor/actions
When I run this code in CQ-Editor build 48 (build on Mon, 30 Nov 2020 19:14:31 GMT),
It created this model.
When I run this code in CQ-Editor build 50 (build on Wed, 20 Jan 2021 18:43:37 GMT),
it created this model.
Is this change intended?
I'm afraid this change back again?
The text was updated successfully, but these errors were encountered: