Masoud Posted April 26, 2020 Share Posted April 26, 2020 Hi; I want to create a surface using two curves like the image below. Both curves are on the same plane (@P.Y = 0). What king of SOP should I use? Thanks for helping. Curve_01.hip Quote Link to comment Share on other sites More sharing options...
Librarian Posted April 26, 2020 Share Posted April 26, 2020 (edited) polyexpand2d/option_offset surface/ Bridge Sop/Same amount of points /group 1 , 2 ..........etc akad.hipnc Edited April 26, 2020 by Librarian Quote Link to comment Share on other sites More sharing options...
konstantin magnus Posted April 26, 2020 Share Posted April 26, 2020 Hi Masoud, unless this is an academic exercise, you could just set polyexpand to 'surfaces' or simply use a polyextrude 'inwards'. Otherwise try joining each curve so it's one primitive per curve, reverse the winding order on one of them so they match, and interpolate a geometry of choice between both curves: vector bb = relbbox(0, v@P); vector pos_crv_0 = primuv(1, 'P', 0, bb.z); vector pos_crv_1 = primuv(1, 'P', 1, bb.z); vector pos_blend = lerp(pos_crv_0, pos_crv_1, bb.x); v@P = pos_blend; Curve_interpolate_KM.hipnc 1 Quote Link to comment Share on other sites More sharing options...
Masoud Posted April 26, 2020 Author Share Posted April 26, 2020 Thanks guys, very good points. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.