소스 검색

Matrix4: Minor clean up.

Mr.doob 10 년 전
부모
커밋
17589f60a9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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;