(self, axes, pad, mode)
| 493 | of the axes, or using the rlabel position (``'rlabel'``). |
| 494 | """ |
| 495 | def __init__(self, axes, pad, mode): |
| 496 | super().__init__(pad, pad, axes.get_figure(root=False).dpi_scale_trans) |
| 497 | self.set_children(axes._realViewLim) |
| 498 | self.axes = axes |
| 499 | self.mode = mode |
| 500 | self.pad = pad |
| 501 | |
| 502 | __str__ = mtransforms._make_str_method("axes", "pad", "mode") |
| 503 |
nothing calls this directly
no test coverage detected