MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / process_selected

Method process_selected

lib/matplotlib/lines.py:1704–1715  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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."""

Callers 1

onpickMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected