浏览代码

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;