NURBS curve using knots, control points and weights?

In the documentation we have rhino3dm.NurbsCurve function

image

but I don’t see argument where to enter knot vector, is there a way to do this?

see the .Knots property of the NurbsCurve. the documentation below has a detailed example too.

1 Like

Thanks Menno,

.SetPoint() didn’t work but accessing a point with nc.Points[8] = rhino3dm.Point4d(1.0, 0.0, 0.0, 1.0) worked