Return the path of the arrow in the data coordinates.
(self)
| 4605 | else 1) # backcompat. |
| 4606 | |
| 4607 | def get_path(self): |
| 4608 | """Return the path of the arrow in the data coordinates.""" |
| 4609 | # The path is generated in display coordinates, then converted back to |
| 4610 | # data coordinates. |
| 4611 | _path, fillable = self._get_path_in_displaycoord() |
| 4612 | if np.iterable(fillable): |
| 4613 | _path = Path.make_compound_path(*_path) |
| 4614 | return self.get_transform().inverted().transform_path(_path) |
| 4615 | |
| 4616 | def _get_path_in_displaycoord(self): |
| 4617 | """Return the mutated path of the arrow in display coordinates.""" |
nothing calls this directly
no test coverage detected