area method

double area()

@return {number} The area of the size (width * height).

Implementation

double area()
{
  return width * height;
}