Pārlūkot izejas kodu

Fixed extractBasis whitespace

Colin Ballast 10 gadi atpakaļ
vecāks
revīzija
97e2964266
1 mainītis faili ar 4 papildinājumiem un 4 dzēšanām
  1. 4 4
      src/math/Matrix4.js

+ 4 - 4
src/math/Matrix4.js

@@ -91,15 +91,15 @@ THREE.Matrix4.prototype = {
 	},
 	},
 
 
 	extractBasis: function ( xAxis, yAxis, zAxis ) {
 	extractBasis: function ( xAxis, yAxis, zAxis ) {
- 
+
 		var te = this.elements;
 		var te = this.elements;
- 
+
 		xAxis.set( te[ 0 ], te[ 1 ], te[ 2 ] );
 		xAxis.set( te[ 0 ], te[ 1 ], te[ 2 ] );
 		yAxis.set( te[ 4 ], te[ 5 ], te[ 6 ] );
 		yAxis.set( te[ 4 ], te[ 5 ], te[ 6 ] );
 		zAxis.set( te[ 8 ], te[ 9 ], te[ 10 ] );
 		zAxis.set( te[ 8 ], te[ 9 ], te[ 10 ] );
- 
+
 		return this;
 		return this;
- 		
+
 	},
 	},
  
  
 	makeBasis: function ( xAxis, yAxis, zAxis ) {
 	makeBasis: function ( xAxis, yAxis, zAxis ) {