| 195 | } |
| 196 | |
| 197 | void PiuRectangleSet(PiuRectangle r, PiuCoordinate x, PiuCoordinate y, PiuDimension width, PiuDimension height) |
| 198 | { |
| 199 | r->x = x; |
| 200 | r->y = y; |
| 201 | r->width = width; |
| 202 | r->height = height; |
| 203 | } |
| 204 | |
| 205 | void PiuRectangleUnion(PiuRectangle r0, PiuRectangle r1, PiuRectangle r2) |
| 206 | { |
no outgoing calls
no test coverage detected