Draw a line between two points.
(self, x0, y0, x1, y1, color)
| 378 | _lib.pager_vline(x, y, h, color) |
| 379 | |
| 380 | def line(self, x0, y0, x1, y1, color): |
| 381 | """Draw a line between two points.""" |
| 382 | _lib.pager_draw_line(x0, y0, x1, y1, color) |
| 383 | |
| 384 | def fill_circle(self, cx, cy, r, color): |
| 385 | """Draw a filled circle.""" |
no outgoing calls
no test coverage detected