Point::Absolute

Point::Absolute
inline Point<T>& Absolute();
Description

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|)
Return Value

A Point reference to the current string whose coordinates result from the positive equivalent of the original coordinates.