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

Method get_path

lib/matplotlib/lines.py:1051–1055  ·  view source on GitHub ↗

Return the `~matplotlib.path.Path` associated with this line.

(self)

Source from the content-addressed store, hash-verified

1049 return self._y
1050
1051 def get_path(self):
1052 """Return the `~matplotlib.path.Path` associated with this line."""
1053 if self._invalidy or self._invalidx:
1054 self.recache()
1055 return self._path
1056
1057 def get_xydata(self):
1058 """Return the *xy* data as a (N, 2) array."""

Callers 3

axhlineMethod · 0.95
axvlineMethod · 0.95
drawMethod · 0.45

Calls 1

recacheMethod · 0.95

Tested by

no test coverage detected