| 135 | } |
| 136 | |
| 137 | PiuBoolean PiuRectangleIsEqual(PiuRectangle r1, PiuRectangle r2) |
| 138 | { |
| 139 | return (r1->x == r2->x) && |
| 140 | (r1->y == r2->y) && |
| 141 | (r1->width == r2->width) && |
| 142 | (r1->height == r2->height); |
| 143 | } |
| 144 | |
| 145 | void PiuRectangleOffset(PiuRectangle r, PiuCoordinate dx, PiuCoordinate dy) |
| 146 | { |
no outgoing calls
no test coverage detected