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
Attempt to render the following example from the documentation section Lofting between two sketches in CQ Editor:
from cadquery import Workplane, Sketch, Vector, Location s1 = Sketch().trapezoid(3, 1, 110).vertices().fillet(0.2) s2 = Sketch().rect(2, 1).vertices().fillet(0.2) result = Workplane().placeSketch(s1, s2.moved(z=3)).loft()
TypeError: Sketch.moved() got an unexpected keyword argument 'z' File: <cq_editor-string> Line: 7 Code: result = Workplane().placeSketch(s1, s2.moved(z=3)).loft()
from cadquery import Workplane, Sketch, Vector, Location s1 = Sketch().trapezoid(3, 1, 110).vertices().fillet(0.2) s2 = Sketch().rect(2, 1).vertices().fillet(0.2) # replace z=3 with Vector(0,0,3) result = Workplane().placeSketch(s1, s2.moved(Vector(0,0,3))).loft()
OS: Windows 11 Pro Using: CQ-Editor Version 0.3.0dev
The text was updated successfully, but these errors were encountered:
I cannot reproduce this on master.
Sorry, something went wrong.
Does this suggest it won't be an issue if I get the code from Master?
Yes
Thanks Adam.
No branches or pull requests
To Reproduce
Attempt to render the following example from the documentation section Lofting between two sketches in CQ Editor:
Backtrace
This works
Environment
OS: Windows 11 Pro
Using: CQ-Editor Version 0.3.0dev
The text was updated successfully, but these errors were encountered: