ソースを参照

MathUtils: Clean up.

Mr.doob 4 年 前
コミット
a8db144196
1 ファイル変更2 行追加2 行削除
  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;
 
-		 }
+	}
 
 }