Closed veillette closed 7 years ago
// constraints shared with Arc assert && assert( !( ( !this.anticlockwise && this.endAngle - this.startAngle <= -Math.PI * 2 ) || ( this.anticlockwise && this.startAngle - this.endAngle <= -Math.PI * 2 ) ), 'Not handling elliptical arcs with start/end angles that show differences in-between browser handling' ); assert && assert( !( ( !this.anticlockwise && this.endAngle - this.startAngle > Math.PI * 2 ) || ( this.anticlockwise && this.startAngle - this.endAngle > Math.PI * 2 ) ), 'Not handling elliptical arcs with start/end angles that show differences in-between browser handling' );
I think you want to use, this_anticlockwise, this._endAngle, etc Assigning to @jonathanolson
I think you want to use, this_anticlockwise, this._endAngle, etc Assigning to @jonathanolson