three.fbo-helper
Version:
FrameBuffer Object inspector for three.js
36 lines (23 loc) • 690 B
JavaScript
import { Vector3 } from '../../math/Vector3';
import { ShapeUtils } from '../ShapeUtils';
import { Curve } from '../core/Curve';
var QuadraticBezierCurve3;
/**************************************************************
* Quadratic Bezier 3D curve
**************************************************************/
QuadraticBezierCurve3 = Curve.create(
function ( v0, v1, v2 ) {
this.v0 = v0;
this.v1 = v1;
this.v2 = v2;
},
function ( t ) {
var b2 = ShapeUtils.b2;
return new Vector3(
b2( t, this.v0.x, this.v1.x, this.v2.x ),
b2( t, this.v0.y, this.v1.y, this.v2.y ),
b2( t, this.v0.z, this.v1.z, this.v2.z )
);
}
);
export { QuadraticBezierCurve3 };