Bläddra i källkod

remove unicode character from EllipseCurve.js

Kevin Ngo 7 år sedan
förälder
incheckning
57a483cfb8
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/extras/curves/EllipseCurve.js

+ 1 - 1
src/extras/curves/EllipseCurve.js

@@ -14,7 +14,7 @@ function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockw
 	this.xRadius = xRadius || 1;
 	this.yRadius = yRadius || 1;
 
-	this.aStartAngle = aStartAngle || 0;
+	this.aStartAngle = aStartAngle || 0;
 	this.aEndAngle = aEndAngle || 2 * Math.PI;
 
 	this.aClockwise = aClockwise || false;