Move all the artists by ox, oy (axes coords).
(self, ox, oy)
| 509 | self.stale = True |
| 510 | |
| 511 | def _offset(self, ox, oy): |
| 512 | """Move all the artists by ox, oy (axes coords).""" |
| 513 | for c in self._cells.values(): |
| 514 | x, y = c.get_x(), c.get_y() |
| 515 | c.set_x(x + ox) |
| 516 | c.set_y(y + oy) |
| 517 | |
| 518 | def _update_positions(self, renderer): |
| 519 | # called from renderer to allow more precise estimates of |