isEmpty method

bool isEmpty()

@return {bool} True if the size has zero area, false if both dimensions are non-zero numbers.

Implementation

bool isEmpty()
{
  return area() == 0;
}