Browse Source

Matrix4: Minor clean up.

Mr.doob 10 years ago
parent
commit
17589f60a9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/math/Matrix4.js

+ 2 - 2
src/math/Matrix4.js

@@ -101,7 +101,7 @@ THREE.Matrix4.prototype = {
 		return this;
 
 	},
- 
+
 	makeBasis: function ( xAxis, yAxis, zAxis ) {
 
 		this.set(
@@ -469,7 +469,7 @@ THREE.Matrix4.prototype = {
 
 		var v1;
 
-		return function applyToVector3Array( array, offset, length ) {
+		return function ( array, offset, length ) {
 
 			if ( v1 === undefined ) v1 = new THREE.Vector3();
 			if ( offset === undefined ) offset = 0;