isEmpty method
@return {bool} True if the size has zero area, false if both dimensions are non-zero numbers.
Implementation
bool isEmpty()
{
return area() == 0;
}
@return {bool} True if the size has zero area, false if both dimensions are non-zero numbers.
bool isEmpty()
{
return area() == 0;
}