Move all the artists by ox, oy (axes coords).
(self, ox, oy)
| 574 | self.stale = True |
| 575 | |
| 576 | def _offset(self, ox, oy): |
| 577 | """Move all the artists by ox, oy (axes coords).""" |
| 578 | for c in self._cells.values(): |
| 579 | x, y = c.get_x(), c.get_y() |
| 580 | c.set_x(x + ox) |
| 581 | c.set_y(y + oy) |
| 582 | |
| 583 | def _update_positions(self, renderer): |
| 584 | # called from renderer to allow more precise estimates of |
no test coverage detected