negate method

Vector4 negate()

Implementation

Vector4 negate() {
  x = -x;
  y = -y;
  z = -z;
  w = -w;

  return this;
}