The area of the image or rectangle calculated as (width * height) * * @return Area (width * height) * */
| 54 | * |
| 55 | */ |
| 56 | size_t area() const |
| 57 | { |
| 58 | return (width * height); |
| 59 | } |
| 60 | |
| 61 | bool operator==(const Size2D &other) const |
| 62 | { |
no outgoing calls
no test coverage detected