(self, center, animal, bodypart, **kwargs)
| 512 | self.fig.canvas.draw_idle() |
| 513 | |
| 514 | def add_point(self, center, animal, bodypart, **kwargs): |
| 515 | circle = patches.Circle(center, **kwargs) |
| 516 | self.ax1.add_patch(circle) |
| 517 | dp = DraggablePoint(circle, bodypart, animal) |
| 518 | dp.connect() |
| 519 | self.dps.append(dp) |
| 520 | |
| 521 | def clean_points(self): |
| 522 | for dp in self.dps: |
no test coverage detected