mul method

Vector2C mul(
  1. Vector2C o
)

Implementation

Vector2C mul(Vector2C o) => set(x * o.x, y * o.y);