Redraw the polygon based on the new vertex positions.
(self)
| 4344 | self._polygon_handles.set_data(xs, ys) |
| 4345 | |
| 4346 | def _draw_polygon(self): |
| 4347 | """Redraw the polygon based on the new vertex positions.""" |
| 4348 | self._draw_polygon_without_update() |
| 4349 | self.update() |
| 4350 | |
| 4351 | @property |
| 4352 | def verts(self): |
no test coverage detected