Return the `~matplotlib.path.Path` associated with this line.
(self)
| 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.""" |