Browse Source

fixed a typo.

Nico Kruithof 14 years ago
parent
commit
82a0bcfc26
1 changed files with 1 additions and 1 deletions
  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;