angle method

double angle(
  1. Vector2C o
)

Implementation

double angle(Vector2C o) => math.atan2(x*o.y - y*o.x, x*o.x + y*o.y);