Return the *xy* data as a (N, 2) array.
(self)
| 1055 | return self._path |
| 1056 | |
| 1057 | def get_xydata(self): |
| 1058 | """Return the *xy* data as a (N, 2) array.""" |
| 1059 | if self._invalidy or self._invalidx: |
| 1060 | self.recache() |
| 1061 | return self._xy |
| 1062 | |
| 1063 | def set_antialiased(self, b): |
| 1064 | """ |