diff --git a/src/core/Vector3.js b/src/core/Vector3.js index f06cac3eb188fd4523129abe3270048a2c382227..3b6d241cf4a301c9aaf33f3b5d4097286843f96f 100644 --- a/src/core/Vector3.js +++ b/src/core/Vector3.js @@ -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; },