multiply method

Vector2 multiply(
  1. Vector2 v
)

Implementation

Vector2 multiply(Vector2 v) {
  x *= v.x;
  y *= v.y;

  return this;
}