inline T Angle(T x2, T y2) const; inline T Angle(const Point<T> & pt) const;
Angle calculates the angle, in radians, between the current Point and a passed point.
The following expression is used to determine the result:
arctangent of (y2 - y) / (x2 - x);
implemented as:
atan2(y2-y, x2-x).
A value containing the angle, in radians, between the current point and passed point.