(self)
| 513 | super().draw(renderer) |
| 514 | |
| 515 | def get_axis_position(self): |
| 516 | tc = self._transformed_cube(self.get_w_lims()) |
| 517 | xhigh = tc[1][2] > tc[2][2] |
| 518 | yhigh = tc[3][2] > tc[2][2] |
| 519 | zhigh = tc[0][2] > tc[2][2] |
| 520 | return xhigh, yhigh, zhigh |
| 521 | |
| 522 | def update_datalim(self, xys, **kwargs): |
| 523 | """ |