jbousquie 9 anni fa
parent
commit
cb17f05c2a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/Math/babylon.math.ts

+ 1 - 1
src/Math/babylon.math.ts

@@ -467,7 +467,7 @@
         public normalize(): Vector2 {
             var len = this.length();
 
-            if (len  === 0)
+            if (len === 0)
                 return this;
 
             var num = 1.0 / len;