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

Method __init__

lib/matplotlib/projections/polar.py:729–734  ·  view source on GitHub ↗
(self, center, viewLim, originLim, **kwargs)

Source from the content-addressed store, hash-verified

727 Bbox determining the origin for the wedge, if different from *viewLim*
728 """
729 def __init__(self, center, viewLim, originLim, **kwargs):
730 super().__init__([[0, 0], [1, 1]], **kwargs)
731 self._center = center
732 self._viewLim = viewLim
733 self._originLim = originLim
734 self.set_children(viewLim, originLim)
735
736 __str__ = mtransforms._make_str_method("_center", "_viewLim", "_originLim")
737

Callers

nothing calls this directly

Calls 2

set_childrenMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected