multiplied method

Vector2 multiplied(
  1. Vector2 other
)
inherited

Copy of this multiplied by other.

Implementation

Vector2 multiplied(Vector2 other) => .new(x * other.x, y * other.y);