3 Point Parabola

In Rhino there is a command to build a parabola from 3 points, how can i do that in grasshopper? Or at least a parabola controlling the distance between the 2 upper points and the distance of the vertex at the bottom
greetings

If it didn’t exist in a plugin just some line in a code
https://developer.rhino3d.com/api/RhinoCommon/html/M_Rhino_Geometry_NurbsCurve_CreateParabolaFromFocus.htm
https://developer.rhino3d.com/api/RhinoCommon/html/M_Rhino_Geometry_NurbsCurve_CreateParabolaFromVertex.htm

It’s my first time with c# scripting so i don’t know how to correctly insert the code. I putted the type hint of the inputs as “Point 3D” but don’t know how to continue

here, i’ve done it in python for you.

parabola.gh (3.9 KB)

4 Likes

… and in C#:

bild

// Rolf

1 Like