Apply the affine part of this transform to `.Path` *path*, returning a new `.Path`. ``transform_path(path)`` is equivalent to ``transform_path_affine(transform_path_non_affine(values))``.
(self, path)
| 1660 | return self.transform_path_affine(self.transform_path_non_affine(path)) |
| 1661 | |
| 1662 | def transform_path_affine(self, path): |
| 1663 | """ |
| 1664 | Apply the affine part of this transform to `.Path` *path*, returning a |
| 1665 | new `.Path`. |
| 1666 | |
| 1667 | ``transform_path(path)`` is equivalent to |
| 1668 | ``transform_path_affine(transform_path_non_affine(values))``. |
| 1669 | """ |
| 1670 | return self.get_affine().transform_path_affine(path) |
| 1671 | |
| 1672 | def transform_path_non_affine(self, path): |
| 1673 | """ |
no test coverage detected