11 lines
457 B
JavaScript
11 lines
457 B
JavaScript
/**************************************************************
|
|
* Arc curve
|
|
**************************************************************/
|
|
|
|
THREE.ArcCurve = function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) {
|
|
|
|
THREE.EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise );
|
|
};
|
|
|
|
THREE.ArcCurve.prototype = Object.create( THREE.EllipseCurve.prototype );
|
|
THREE.ArcCurve.prototype.constructor = THREE.ArcCurve;
|