Returns a path, transformed only by the affine part of this transform. *path*: a :class:`~matplotlib.path.Path` instance. ``transform_path(path)`` is equivalent to ``transform_path_affine(transform_path_non_affine(values))``.
(self, path)
| 1522 | return self.transform_path_affine(self.transform_path_non_affine(path)) |
| 1523 | |
| 1524 | def transform_path_affine(self, path): |
| 1525 | """ |
| 1526 | Returns a path, transformed only by the affine part of |
| 1527 | this transform. |
| 1528 | |
| 1529 | *path*: a :class:`~matplotlib.path.Path` instance. |
| 1530 | |
| 1531 | ``transform_path(path)`` is equivalent to |
| 1532 | ``transform_path_affine(transform_path_non_affine(values))``. |
| 1533 | """ |
| 1534 | return self.get_affine().transform_path_affine(path) |
| 1535 | |
| 1536 | def transform_path_non_affine(self, path): |
| 1537 | """ |
no test coverage detected