Răsfoiți Sursa

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

Wandalen 10 ani în urmă
părinte
comite
80b7ac9156
1 a modificat fișierele cu 0 adăugiri și 4 ștergeri
  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;
 	},