Pārlūkot izejas kodu

MathUtils: Clean up.

Mr.doob 4 gadi atpakaļ
vecāks
revīzija
a8db144196
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  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;
 
-		 }
+	}
 
 }