Browse Source

pass along update to Euler.setFromRotationMatrix.

Ben Houston 10 years ago
parent
commit
b6217c7d21
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/math/Euler.js

+ 1 - 1
src/math/Euler.js

@@ -232,7 +232,7 @@ THREE.Euler.prototype = {
 	   
 	   	  mIntermediate = mIntermediate || new THREE.Matrix4();
 	      mIntermediate.makeRotationFromQuaternion( q );
-	      this.setFromRotationMatrix( mIntermediate, order );
+	      this.setFromRotationMatrix( mIntermediate, order, update );
 	   
 	      return this;
 	   };