add method

Vector2C add(
  1. Vector2C o
)

Implementation

Vector2C add(Vector2C o) => set(x + o.x, y + o.y);