Return this line's `~matplotlib.transforms.TransformedPath`.
(self)
| 740 | self._transformed_path = TransformedPath(_path, self.get_transform()) |
| 741 | |
| 742 | def _get_transformed_path(self): |
| 743 | """Return this line's `~matplotlib.transforms.TransformedPath`.""" |
| 744 | if self._transformed_path is None: |
| 745 | self._transform_path() |
| 746 | return self._transformed_path |
| 747 | |
| 748 | def set_transform(self, t): |
| 749 | # docstring inherited |
no test coverage detected