(self, img, w=1, color=None)
| 92 | dc.DrawCircle(f((self.lt+self.rt)/2, self.bm),2) |
| 93 | |
| 94 | def sketch(self, img, w=1, color=None): |
| 95 | pen = paint.Paint() |
| 96 | xs, ys = [x[0] for x in self.body], [x[1] for x in self.body] |
| 97 | pen.draw_path(img, xs, ys, w, color) |
| 98 | |
| 99 | def fill(self, img, color=None): |
| 100 | pen = paint.Paint() |