source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/src/extras/curves/ArcCurve.js@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 401 bytes
Line 
1/**************************************************************
2 * Arc curve
3 **************************************************************/
4
5THREE.ArcCurve = function ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) {
6
7 THREE.EllipseCurve.call( this, aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise );
8};
9
10THREE.ArcCurve.prototype = Object.create( THREE.EllipseCurve.prototype );
Note: See TracBrowser for help on using the repository browser.