diff --git a/src/core/Vector3.js b/src/core/Vector3.js index e3a7fc0a..68461aab 100644 --- a/src/core/Vector3.js +++ b/src/core/Vector3.js @@ -136,6 +136,16 @@ THREE.Vector3.prototype = { }, + divideSelf: function ( v ) { + + this.x /= v.x; + this.y /= v.y; + this.z /= v.z; + + return this; + + }, + divideScalar: function ( s ) { this.x /= s;