@@ -303,7 +303,10 @@ THREE.Vector2.prototype = {
negate: function () {
- return this.multiplyScalar( - 1 );
+ this.x = - this.x;
+ this.y = - this.y;
+
+ return this;
},
@@ -506,7 +506,11 @@ THREE.Vector3.prototype = {
+ this.z = - this.z;
@@ -551,7 +551,12 @@ THREE.Vector4.prototype = {
+ this.w = - this.w;