inline Point<T>& Absolute();
Absolute converts the x and y coordinate values of the current point to their positive (absolute value) equivalent.
The following expression is used to determine the result:
(pt1.x, pt1.y) = (|pt1.x|, |pt1.y|)
A Point reference to the current string whose coordinates result from the positive equivalent of the original coordinates.