(self, ax, renderer)
| 111 | self._transform = transform |
| 112 | |
| 113 | def __call__(self, ax, renderer): |
| 114 | # Subtracting transSubfigure will typically rely on inverted(), |
| 115 | # freezing the transform; thus, this needs to be delayed until draw |
| 116 | # time as transSubfigure may otherwise change after this is evaluated. |
| 117 | return mtransforms.TransformedBbox( |
| 118 | mtransforms.Bbox.from_bounds(*self._bounds), |
| 119 | self._transform - ax.get_figure(root=False).transSubfigure) |
| 120 | |
| 121 | |
| 122 | def _process_plot_format(fmt, *, ambiguous_fmt_datakey=False): |
nothing calls this directly
no test coverage detected