Interpolate ghpython

Hi,
I’m trying to recreate Spline from AutoCad ( Import Spline from AutoCad to Rhino) . So I try to use “Nurbs Curve” “Interpolate (t)” “Interpolate” , it’s seem like not true.
I want create Spline by ghpython to same with Spline of AutoCad
Any Ideas.


Interpolate.gh (7.2 KB)

import ghpythonlib.components as ghc
a = ghc.NurbsCurve(x,3,False)[0]

Hi, Thank you for quick answer
I tried, but it not same with spline by autocad.

Maybe it has something to do with “knots”? Only guessing, but NurbsCurve() is way closer and more appropriate than Interpolate() eh?

Thank you.