Draw a rectangle outline.
(self, x, y, w, h, color)
| 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.""" |
| 370 | _lib.pager_draw_rect(x, y, w, h, color) |
| 371 | |
| 372 | def hline(self, x, y, w, color): |
| 373 | """Draw horizontal line.""" |
no outgoing calls
no test coverage detected