소스 검색

Removed blank line tabs and spaces.

Colin Ballast 10 년 전
부모
커밋
ab6fe8ebb7
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/math/Matrix4.js

+ 3 - 3
src/math/Matrix4.js

@@ -680,7 +680,7 @@ THREE.Matrix4.prototype = {
 			this.identity();
 
 			return this;
-			
+
 		}
 
 		this.multiplyScalar( 1 / det );
@@ -877,9 +877,9 @@ THREE.Matrix4.prototype = {
 			// if determine is negative, we need to invert one scale
 			var det = this.determinant();
 			if ( det < 0 ) {
-				
+
 				sx = - sx;
-				
+
 			}
 
 			position.x = te[ 12 ];