negate method

Vector3 negate()

Implementation

Vector3 negate() {
  x = -x;
  y = -y;
  z = -z;

  return this;
}