CatmullRomCurve3 constructor
CatmullRomCurve3({})
Implementation
CatmullRomCurve3({
points,
this.closed = false,
this.curveType = 'centripetal',
this.tension = 0.5,
}) : super() {
type = 'CatmullRomCurve3';
this.points = points ?? [];
}