Hi!
I was wondering the basic use for NurbsSurface.CreateFromPoints in grasshopper C#.
I expected to make a plane based on these 4 points(‘pts’ in code), but it always returns me the butterfly shape.
My code is :
A = NurbsSurface.CreateFromPoints(pts, 2, 2, 1, 1);
Because there are 2 points in U/V direction and plane is degree 1 surface.
What am I missing? Is the order of points wrong?
Thanks!