(self, aux_transform)
| 841 | transformed coordinate. |
| 842 | """ |
| 843 | def __init__(self, aux_transform): |
| 844 | self.aux_transform = aux_transform |
| 845 | super().__init__() |
| 846 | self.offset_transform = mtransforms.Affine2D() |
| 847 | # ref_offset_transform makes offset_transform always relative to the |
| 848 | # lower-left corner of the bbox of its children. |
| 849 | self.ref_offset_transform = mtransforms.Affine2D() |
| 850 | |
| 851 | def add_artist(self, a): |
| 852 | """Add an `.Artist` to the container box.""" |