Return the locations of the ticks.
(self)
| 2465 | f"{self._subs.ndim}-dimensional.") |
| 2466 | |
| 2467 | def __call__(self): |
| 2468 | """Return the locations of the ticks.""" |
| 2469 | vmin, vmax = self.axis.get_view_interval() |
| 2470 | return self.tick_values(vmin, vmax) |
| 2471 | |
| 2472 | def _log_b(self, x): |
| 2473 | # Use specialized logs if possible, as they can be more accurate; e.g. |
nothing calls this directly
no test coverage detected