1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { Curve } from '../core/Curve.js';
- import { CatmullRom } from '../core/Interpolations.js';
- import { Vector2 } from '../../math/Vector2.js';
- function SplineCurve( points /* array of Vector2 */ ) {
- Curve.call( this );
- this.type = 'SplineCurve';
- this.points = points || [];
- }
- SplineCurve.prototype = Object.create( Curve.prototype );
- SplineCurve.prototype.constructor = SplineCurve;
- SplineCurve.prototype.isSplineCurve = true;
- SplineCurve.prototype.getPoint = function ( t, optionalTarget ) {
- const point = optionalTarget || new Vector2();
- const points = this.points;
- const p = ( points.length - 1 ) * t;
- const intPoint = Math.floor( p );
- const weight = p - intPoint;
- const p0 = points[ intPoint === 0 ? intPoint : intPoint - 1 ];
- const p1 = points[ intPoint ];
- const p2 = points[ intPoint > points.length - 2 ? points.length - 1 : intPoint + 1 ];
- const p3 = points[ intPoint > points.length - 3 ? points.length - 1 : intPoint + 2 ];
- point.set(
- CatmullRom( weight, p0.x, p1.x, p2.x, p3.x ),
- CatmullRom( weight, p0.y, p1.y, p2.y, p3.y )
- );
- return point;
- };
- SplineCurve.prototype.copy = function ( source ) {
- Curve.prototype.copy.call( this, source );
- this.points = [];
- for ( let i = 0, l = source.points.length; i < l; i ++ ) {
- const point = source.points[ i ];
- this.points.push( point.clone() );
- }
- return this;
- };
- SplineCurve.prototype.toJSON = function () {
- const data = Curve.prototype.toJSON.call( this );
- data.points = [];
- for ( let i = 0, l = this.points.length; i < l; i ++ ) {
- const point = this.points[ i ];
- data.points.push( point.toArray() );
- }
- return data;
- };
- SplineCurve.prototype.fromJSON = function ( json ) {
- Curve.prototype.fromJSON.call( this, json );
- this.points = [];
- for ( let i = 0, l = json.points.length; i < l; i ++ ) {
- const point = json.points[ i ];
- this.points.push( new Vector2().fromArray( point ) );
- }
- return this;
- };
- export { SplineCurve };
|