Return the locations of the ticks.
(self)
| 1942 | self.numticks = numticks |
| 1943 | |
| 1944 | def __call__(self): |
| 1945 | """Return the locations of the ticks.""" |
| 1946 | vmin, vmax = self.axis.get_view_interval() |
| 1947 | return self.tick_values(vmin, vmax) |
| 1948 | |
| 1949 | def tick_values(self, vmin, vmax): |
| 1950 | vmin, vmax = mtransforms._nonsingular(vmin, vmax, expander=0.05) |
nothing calls this directly
no test coverage detected