Ver código fonte

MathUtils: Clean up.

Mr.doob 4 anos atrás
pai
commit
a8db144196
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/math/MathUtils.js

+ 2 - 2
src/math/MathUtils.js

@@ -57,11 +57,11 @@ function inverseLerp( x, y, value ) {
 
 		return ( value - x ) / ( y - x );
 
-		 } else {
+	} else {
 
 		return 0;
 
-		 }
+	}
 
 }