(self)
| 444 | self.base.set_axis(axis) |
| 445 | |
| 446 | def __call__(self): |
| 447 | # Ensure previous behaviour with full circle non-annular views. |
| 448 | ax = self.base.axis.axes |
| 449 | if _is_full_circle_rad(*ax.viewLim.intervalx): |
| 450 | rorigin = ax.get_rorigin() * ax.get_rsign() |
| 451 | if ax.get_rmin() <= rorigin: |
| 452 | return [tick for tick in self.base() if tick > rorigin] |
| 453 | return self.base() |
| 454 | |
| 455 | def _zero_in_bounds(self): |
| 456 | """ |
nothing calls this directly
no test coverage detected