Merge remote branch 'remotes/upstream/master'

This commit is contained in:
alteredq
2011-01-04 04:52:53 +01:00
+10
View File
@@ -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;