Apply the transform to `.Path` *path*, returning a new `.Path`. In some cases, this transform may insert curves into the path that began as line segments.
(self, path)
| 1651 | return self.transform(point) |
| 1652 | |
| 1653 | def transform_path(self, path): |
| 1654 | """ |
| 1655 | Apply the transform to `.Path` *path*, returning a new `.Path`. |
| 1656 | |
| 1657 | In some cases, this transform may insert curves into the path |
| 1658 | that began as line segments. |
| 1659 | """ |
| 1660 | return self.transform_path_affine(self.transform_path_non_affine(path)) |
| 1661 | |
| 1662 | def transform_path_affine(self, path): |
| 1663 | """ |