Explorar el Código

Merge pull request #12634 from ngokevin/unicodespace

remove unicode character from EllipseCurve.js
Mr.doob hace 7 años
padre
commit
8ae9ff79b4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;