Default "do nothing" implementation of the `process_selected` method. Parameters ---------- ind : list of int The indices of the selected vertices. xs, ys : array-like The coordinates of the selected vertices.
(self, ind, xs, ys)
| 1702 | canvas = property(lambda self: self.axes.get_figure(root=True).canvas) |
| 1703 | |
| 1704 | def process_selected(self, ind, xs, ys): |
| 1705 | """ |
| 1706 | Default "do nothing" implementation of the `process_selected` method. |
| 1707 | |
| 1708 | Parameters |
| 1709 | ---------- |
| 1710 | ind : list of int |
| 1711 | The indices of the selected vertices. |
| 1712 | xs, ys : array-like |
| 1713 | The coordinates of the selected vertices. |
| 1714 | """ |
| 1715 | pass |
| 1716 | |
| 1717 | def onpick(self, event): |
| 1718 | """When the line is picked, update the set of selected indices.""" |