소스 검색

fixed a typo.

Nico Kruithof 14 년 전
부모
커밋
82a0bcfc26
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/Vector3.js

+ 1 - 1
src/core/Vector3.js

@@ -112,7 +112,7 @@ THREE.Vector3.prototype = {
 
 		this.x *= v.x;
 		this.y *= v.y;
-		this.z *= v.y;
+		this.z *= v.z;
 
 		return this;