In the documentation we have rhino3dm.NurbsCurve
function
but I don’t see argument where to enter knot vector, is there a way to do this?
In the documentation we have rhino3dm.NurbsCurve
function
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.
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