mul method

Vector2D mul(
  1. Vector2D o
)

Implementation

Vector2D mul(Vector2D o) => .vec2(x * o.x, y * o.y);