Returns a transformed path. *path*: a :class:`~matplotlib.path.Path` instance. In some cases, this transform may insert curves into the path that began as line segments.
(self, path)
| 1511 | return self.transform(np.asarray([point]))[0] |
| 1512 | |
| 1513 | def transform_path(self, path): |
| 1514 | """ |
| 1515 | Returns a transformed path. |
| 1516 | |
| 1517 | *path*: a :class:`~matplotlib.path.Path` instance. |
| 1518 | |
| 1519 | In some cases, this transform may insert curves into the path |
| 1520 | that began as line segments. |
| 1521 | """ |
| 1522 | return self.transform_path_affine(self.transform_path_non_affine(path)) |
| 1523 | |
| 1524 | def transform_path_affine(self, path): |
| 1525 | """ |