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 did not expect this result from the sweep.
import cadquery as cq from cadquery.occ_impl.shapes import * path = cq.Wire.makeHelix(2, 6, 4) e1 = segment((4, 0, 0), (4, 0, 0.5)) res = sweep(e1, path)
I got the expected result after changing the sweep function to call builder.SetMode(True) here:
builder.SetMode(True)
cadquery/cadquery/occ_impl/shapes.py
Line 4956 in 3cd327a
Perhaps this can be set by default, or optionally as a function argument.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I did not expect this result from the sweep.
I got the expected result after changing the sweep function to call
builder.SetMode(True)
here:cadquery/cadquery/occ_impl/shapes.py
Line 4956 in 3cd327a
Perhaps this can be set by default, or optionally as a function argument.
The text was updated successfully, but these errors were encountered: