(self, *args,
theta_offset=0, theta_direction=1, rlabel_position=22.5,
**kwargs)
| 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 |
nothing calls this directly
no test coverage detected