Rect::IsNormal

Rect::IsNormal
inline bool IsNormal() const;
Description

IsNormal determines whether a rectangle is normal. The following expression is used to determine this result:

   (x2 >= x1) && (y2 >= y1)
Return Value

A Boolean value of 1 (true) if the rectangle is normal and 0 (false) if it is not.

See Also