mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-22 19:36:13 +10:00
Merge remote branch 'remotes/upstream/master'
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user