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

Method _onmove

lib/matplotlib/widgets.py:3994–4000  ·  view source on GitHub ↗
(self, event)

Source from the content-addressed store, hash-verified

3992 self.verts = None
3993
3994 def _onmove(self, event):
3995 if self.verts is None:
3996 return
3997 self.verts.append(self._get_data(event))
3998 self._selection_artist.set_data(list(zip(*self.verts)))
3999
4000 self.update()
4001
4002
4003class PolygonSelector(_SelectorWidget):

Callers

nothing calls this directly

Calls 3

_get_dataMethod · 0.80
set_dataMethod · 0.45
updateMethod · 0.45

Tested by

no test coverage detected