Get the vertices of the path. Returns ------- (N, 2) array The coordinates of the vertices.
(self)
| 1282 | self.stale = True |
| 1283 | |
| 1284 | def get_xy(self): |
| 1285 | """ |
| 1286 | Get the vertices of the path. |
| 1287 | |
| 1288 | Returns |
| 1289 | ------- |
| 1290 | (N, 2) array |
| 1291 | The coordinates of the vertices. |
| 1292 | """ |
| 1293 | return self._path.vertices |
| 1294 | |
| 1295 | def set_xy(self, xy): |
| 1296 | """ |
no outgoing calls