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

Method __init__

lib/matplotlib/projections/polar.py:780–790  ·  view source on GitHub ↗
(self, *args,
                 theta_offset=0, theta_direction=1, rlabel_position=22.5,
                 **kwargs)

Source from the content-addressed store, hash-verified

778 name = 'polar'
779
780 def __init__(self, *args,
781 theta_offset=0, theta_direction=1, rlabel_position=22.5,
782 **kwargs):
783 # docstring inherited
784 self._default_theta_offset = theta_offset
785 self._default_theta_direction = theta_direction
786 self._default_rlabel_position = np.deg2rad(rlabel_position)
787 super().__init__(*args, **kwargs)
788 self.use_sticky_edges = True
789 self.set_aspect('equal', adjustable='box', anchor='C')
790 self.clear()
791
792 def clear(self):
793 # docstring inherited

Callers

nothing calls this directly

Calls 3

clearMethod · 0.95
__init__Method · 0.45
set_aspectMethod · 0.45

Tested by

no test coverage detected