CatmullRomChain1
class CatmullRomChain1(points: List<Double>, alpha: Double = 0.5, val loop: Boolean = false)(source)
Calculates the 1D Catmull–Rom spline for a chain of points and returns the combined curve.
For more details, see CatmullRom1.
Parameters
points
The List of 1D points where CatmullRom1 is applied in groups of 4.
alpha
The tension of the curve. Use 0.0
for the uniform spline, 0.5
for the centripetal spline, 1.0
for the chordal spline.
loop
Whether to connect the first and last point, such that it forms a closed shape.