Browse Source

Color/Euler: fix 'toArray' broken expectated behavior #4

Wandalen 10 years ago
parent
commit
80b7ac9156
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/math/Euler.js

+ 0 - 4
src/math/Euler.js

@@ -289,10 +289,6 @@ THREE.Euler.prototype = {
 		array[ offset + 1 ] = this._y;
 		array[ offset + 2 ] = this._z;
 
-		if( !withoutOrder ) {
-			array[ offset + 3 ] = this._order;
-		}
-
 		return array;
 	},