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

Method __call__

lib/matplotlib/projections/polar.py:446–453  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 5

_is_full_circle_radFunction · 0.85
get_roriginMethod · 0.80
get_rsignMethod · 0.80
get_rminMethod · 0.80
baseMethod · 0.80

Tested by

no test coverage detected