(self, vmin, vmax)
| 469 | return self.base.nonsingular(vmin, vmax) |
| 470 | |
| 471 | def view_limits(self, vmin, vmax): |
| 472 | vmin, vmax = self.base.view_limits(vmin, vmax) |
| 473 | if self._zero_in_bounds() and vmax > vmin: |
| 474 | # this allows inverted r/y-lims |
| 475 | vmin = min(0, vmin) |
| 476 | return mtransforms._nonsingular(vmin, vmax) |
| 477 | |
| 478 | |
| 479 | class _ThetaShift(mtransforms.ScaledTranslation): |
nothing calls this directly
no test coverage detected