lineAngle method

double lineAngle(
  1. Vector2D o
)

Implementation

double lineAngle(Vector2D o) => -math.atan2(o.y - y, o.x - x);