hi,
I have this code below and get different results when using
SplineLengthData / GetLength or SplineHelp / GetSplineLength.
is there a know reason for this ?
best, index
sld = c4d.utils.SplineLengthData()
sld.Init(path)
length = sld.GetLength()
sld.Free()
# --> length = 114.149518217
sh = c4d.utils.SplineHelp()
sh.InitSplineWith(path, c4d.SPLINEHELPFLAGS_USERDEFORMERS)
length = sh.GetSplineLength()
sh.FreeSpline()
# --> length = 0.0