MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __call__

Method __call__

lib/matplotlib/ticker.py:1944–1947  ·  view source on GitHub ↗

Return the locations of the ticks.

(self)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

tick_valuesMethod · 0.95
get_view_intervalMethod · 0.45

Tested by

no test coverage detected