Return the mutated path of the arrow in display coordinates.
(self)
| 4858 | return self._annotation_clip |
| 4859 | |
| 4860 | def _get_path_in_displaycoord(self): |
| 4861 | """Return the mutated path of the arrow in display coordinates.""" |
| 4862 | dpi_cor = self._dpi_cor |
| 4863 | posA = self._get_xy(self.xy1, self.coords1, self.axesA) |
| 4864 | posB = self._get_xy(self.xy2, self.coords2, self.axesB) |
| 4865 | path = self.get_connectionstyle()( |
| 4866 | posA, posB, |
| 4867 | patchA=self.patchA, patchB=self.patchB, |
| 4868 | shrinkA=self.shrinkA * dpi_cor, shrinkB=self.shrinkB * dpi_cor, |
| 4869 | ) |
| 4870 | path, fillable = self.get_arrowstyle()( |
| 4871 | path, |
| 4872 | self.get_mutation_scale() * dpi_cor, |
| 4873 | self.get_linewidth() * dpi_cor, |
| 4874 | self.get_mutation_aspect() |
| 4875 | ) |
| 4876 | return path, fillable |
| 4877 | |
| 4878 | def _check_xy(self, renderer): |
| 4879 | """Check whether the annotation needs to be drawn.""" |
nothing calls this directly
no test coverage detected