MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _get_transformed_path

Method _get_transformed_path

lib/matplotlib/lines.py:742–746  ·  view source on GitHub ↗

Return this line's `~matplotlib.transforms.TransformedPath`.

(self)

Source from the content-addressed store, hash-verified

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

Callers 3

containsMethod · 0.95
drawMethod · 0.95
_update_line_limitsMethod · 0.80

Calls 1

_transform_pathMethod · 0.95

Tested by

no test coverage detected