diff --git a/src/math/Matrix4.js b/src/math/Matrix4.js index 5f9af87959bc46d7b080eaf99d729d032ef8b585..6c91054a4ea5157d22466eccf51d318507cbe5f2 100644 --- a/src/math/Matrix4.js +++ b/src/math/Matrix4.js @@ -91,15 +91,15 @@ THREE.Matrix4.prototype = { }, extractBasis: function ( xAxis, yAxis, zAxis ) { - + var te = this.elements; - + xAxis.set( te[ 0 ], te[ 1 ], te[ 2 ] ); yAxis.set( te[ 4 ], te[ 5 ], te[ 6 ] ); zAxis.set( te[ 8 ], te[ 9 ], te[ 10 ] ); - + return this; - + }, makeBasis: function ( xAxis, yAxis, zAxis ) {