negate method

Vector2 negate()

Implementation

Vector2 negate() {
  x = -x;
  y = -y;

  return this;
}