Blend Curve different end continuities in GH

In GH, can you make a Blend Curve with different continuities for the two curves you are blending? In Rhino, the dialog box that pops up allows you to choose, say G0 for line 1 and G2 for line 2. Can you do this in GH?
Thanks,
Matt

I don’t think you can with the standard components (although I may be wrong). They both have to be the same. I made a little C# script that might help to give G1 and G2 (although it won’t allow adjustment of the exact control points). Not sure if it helps?


blend2.gh (5.7 KB)

It uses this method:
https://developer.rhino3d.com/api/RhinoCommon/html/M_Rhino_Geometry_Curve_CreateBlendCurve_2.htm

(edit: curved inputs)

That’ll work! Thanks.