Draw a filled rectangle.
(self, x, y, w, h, color)
| 362 | _lib.pager_set_pixel(x, y, color) |
| 363 | |
| 364 | def fill_rect(self, x, y, w, h, color): |
| 365 | """Draw a filled rectangle.""" |
| 366 | _lib.pager_fill_rect(x, y, w, h, color) |
| 367 | |
| 368 | def rect(self, x, y, w, h, color): |
| 369 | """Draw a rectangle outline.""" |
no outgoing calls
no test coverage detected