@@ -132,7 +132,11 @@ THREE.Vector3.prototype = {
divideSelf: function ( v ) {
- return this.divide( this, v );
+ this.x /= v.x;
+ this.y /= v.y;
+ this.z /= v.z;
+
+ return this;
},