Hi Steve,
It is possible to create an interpolated curve with degree different to 3?
I have tested the following code with degree=2, degree=3, degree=4 and it works only with degree=3. Why?
Grazie,
g
Code:import rhinoscriptsyntax as rs points = (0,0,0), (1,1,0), (2,0,0), (3,1,0), (4,0,0), (5,1,0) rs.AddInterpCurve(points,degree=3)


Reply With Quote