How to model a spout? (struggling with sweep/loft) #2030
Answered
by
adam-urbanczyk
Charlie-83
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
adam-urbanczyk
Apr 20, 2026
Replies: 1 comment
-
|
I'd try the following approach: from cadquery.func import *
spine = spline(((0,0,0),(2,0,3)), ((0,0,1), (1,0,0.3)))
c = face(circle(0.5), circle(0.4))
r = face(rect(0.2, 1), rect(0.1, 0.9))
res = loft(c, c.moved(spine.locationAt(0.5)), r.moved(spine.locationAt(1))) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Charlie-83
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

I'd try the following approach: