three.fbo-helper
Version:
FrameBuffer Object inspector for three.js
22 lines (12 loc) • 557 B
JavaScript
import { CatmullRomCurve3 } from './CatmullRomCurve3';
/**************************************************************
* Closed Spline 3D curve
**************************************************************/
function ClosedSplineCurve3( points ) {
console.warn( 'THREE.ClosedSplineCurve3 has been deprecated. Please use THREE.CatmullRomCurve3.' );
CatmullRomCurve3.call( this, points );
this.type = 'catmullrom';
this.closed = true;
}
ClosedSplineCurve3.prototype = Object.create( CatmullRomCurve3.prototype );
export { ClosedSplineCurve3 };