arc_length#
- HermiteSpline.arc_length(stop=None, start=0, epsabs=1e-06, epsrel=1e-06)#
Compute the arc length of the spline between the two parameter values specified. If no value for start is give, start from the begining of the spline. If no value for stop is give, go until the end of the spline. When arrays with multiple values are given for start and/or stop, an array with all of the arc lengths is returned.
Parameters#
- stopnp.array / float (optional)
Stop point(s) in parameter space.
- startnp.array / float (optional)
Start point(s) in parameter space.
- epsabsfloat (optional)
Absolute error tolerance. Default is 1e-6.
- epsrelfloat (optional)
Relative error tolerance. Default is 1e-6.