Browse Source

remove debugging log message from Matrix3.getInverse

Ben Houston 12 years ago
parent
commit
568b456c39
1 changed files with 0 additions and 3 deletions
  1. 0 3
      src/math/Matrix3.js

+ 0 - 3
src/math/Matrix3.js

@@ -140,9 +140,6 @@ THREE.Matrix3.prototype = {
 
 		var det = me[ 0 ] * te[ 0 ] + me[ 1 ] * te[ 3 ] + me[ 2 ] * te[ 6 ];
 
-		console.log( "optimized det: " + det );
-		console.log( "matrix.determinant(): " + matrix.determinant() );
-
 		// no inverse
 
 		if ( det === 0 ) {