Update the pixel positions of the annotated point and the text.
(self, renderer)
| 2260 | Artist.set_figure(self, fig) |
| 2261 | |
| 2262 | def update_positions(self, renderer): |
| 2263 | """Update the pixel positions of the annotated point and the text.""" |
| 2264 | xy_pixel = self._get_position_xy(renderer) |
| 2265 | self._update_position_xytext(renderer, xy_pixel) |
| 2266 | |
| 2267 | def _update_position_xytext(self, renderer, xy_pixel): |
| 2268 | """ |
no test coverage detected