Browse Source

MathUtils: Clean up.

Mr.doob 3 years ago
parent
commit
a8db144196
1 changed files with 2 additions and 2 deletions
  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 );
 		return ( value - x ) / ( y - x );
 
 
-		 } else {
+	} else {
 
 
 		return 0;
 		return 0;
 
 
-		 }
+	}
 
 
 }
 }