123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- import { Curve } from '../core/Curve.js';
- import { Vector2 } from '../../math/Vector2.js';
- class EllipseCurve extends Curve {
- constructor( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) {
- super();
- this.type = 'EllipseCurve';
- this.isEllipseCurve = true;
- this.aX = aX || 0;
- this.aY = aY || 0;
- this.xRadius = xRadius || 1;
- this.yRadius = yRadius || 1;
- this.aStartAngle = aStartAngle || 0;
- this.aEndAngle = aEndAngle || 2 * Math.PI;
- this.aClockwise = aClockwise || false;
- this.aRotation = aRotation || 0;
- }
- getPoint( t, optionalTarget ) {
- const point = optionalTarget || new Vector2();
- const twoPi = Math.PI * 2;
- let deltaAngle = this.aEndAngle - this.aStartAngle;
- const samePoints = Math.abs( deltaAngle ) < Number.EPSILON;
- // ensures that deltaAngle is 0 .. 2 PI
- while ( deltaAngle < 0 ) deltaAngle += twoPi;
- while ( deltaAngle > twoPi ) deltaAngle -= twoPi;
- if ( deltaAngle < Number.EPSILON ) {
- if ( samePoints ) {
- deltaAngle = 0;
- } else {
- deltaAngle = twoPi;
- }
- }
- if ( this.aClockwise === true && ! samePoints ) {
- if ( deltaAngle === twoPi ) {
- deltaAngle = - twoPi;
- } else {
- deltaAngle = deltaAngle - twoPi;
- }
- }
- const angle = this.aStartAngle + t * deltaAngle;
- let x = this.aX + this.xRadius * Math.cos( angle );
- let y = this.aY + this.yRadius * Math.sin( angle );
- if ( this.aRotation !== 0 ) {
- const cos = Math.cos( this.aRotation );
- const sin = Math.sin( this.aRotation );
- const tx = x - this.aX;
- const ty = y - this.aY;
- // Rotate the point about the center of the ellipse.
- x = tx * cos - ty * sin + this.aX;
- y = tx * sin + ty * cos + this.aY;
- }
- return point.set( x, y );
- }
- copy( source ) {
- super.copy( source );
- this.aX = source.aX;
- this.aY = source.aY;
- this.xRadius = source.xRadius;
- this.yRadius = source.yRadius;
- this.aStartAngle = source.aStartAngle;
- this.aEndAngle = source.aEndAngle;
- this.aClockwise = source.aClockwise;
- this.aRotation = source.aRotation;
- return this;
- }
- toJSON() {
- const data = super.toJSON();
- data.aX = this.aX;
- data.aY = this.aY;
- data.xRadius = this.xRadius;
- data.yRadius = this.yRadius;
- data.aStartAngle = this.aStartAngle;
- data.aEndAngle = this.aEndAngle;
- data.aClockwise = this.aClockwise;
- data.aRotation = this.aRotation;
- return data;
- }
- fromJSON( json ) {
- super.fromJSON( json );
- this.aX = json.aX;
- this.aY = json.aY;
- this.xRadius = json.xRadius;
- this.yRadius = json.yRadius;
- this.aStartAngle = json.aStartAngle;
- this.aEndAngle = json.aEndAngle;
- this.aClockwise = json.aClockwise;
- this.aRotation = json.aRotation;
- return this;
- }
- }
- export { EllipseCurve };
|