Browse Source

Removed blank line tabs and spaces.

Colin Ballast 10 years ago
parent
commit
ab6fe8ebb7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/math/Matrix4.js

+ 3 - 3
src/math/Matrix4.js

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