(self, img, x, y, w=None, color=None)
| 52 | self.draw_point(img, x, y, w, color) |
| 53 | |
| 54 | def lineto(self, img, x, y, w=None, color=None): |
| 55 | self.draw_line(img, self.curpt[0], self.curpt[1], x, y, w, color) |
| 56 | self.curpt = x, y |
| 57 | |
| 58 | def draw_path(self, img, xs, ys, w=None, color=None): |
| 59 | self.set_curpt(xs[0], ys[0]) |
no test coverage detected