(self)
| 461 | return self._aspect |
| 462 | |
| 463 | def get_position(self): |
| 464 | if self._pos is None: |
| 465 | bbox = self._axes.get_position(original=True) |
| 466 | return bbox.bounds |
| 467 | else: |
| 468 | return self._pos |
| 469 | |
| 470 | def get_anchor(self): |
| 471 | if self._anchor is None: |
nothing calls this directly
no test coverage detected