Parameters ---------- axis : `~matplotlib.axis.Axis`, optional Axis associated with this transform. This is used to get the minimum radial limit. use_rmin : `bool`, optional If ``True``, subtract the minimum radial axis limit befor
(self, axis=None, use_rmin=True, *,
apply_theta_transforms=False, scale_transform=None)
| 36 | |
| 37 | @_api.delete_parameter('3.11', 'apply_theta_transforms') |
| 38 | def __init__(self, axis=None, use_rmin=True, *, |
| 39 | apply_theta_transforms=False, scale_transform=None): |
| 40 | """ |
| 41 | Parameters |
| 42 | ---------- |
| 43 | axis : `~matplotlib.axis.Axis`, optional |
| 44 | Axis associated with this transform. This is used to get the |
| 45 | minimum radial limit. |
| 46 | use_rmin : `bool`, optional |
| 47 | If ``True``, subtract the minimum radial axis limit before |
| 48 | transforming to Cartesian coordinates. *axis* must also be |
| 49 | specified for this to take effect. |
| 50 | """ |
| 51 | super().__init__() |
| 52 | self._axis = axis |
| 53 | self._use_rmin = use_rmin |
| 54 | self._scale_transform = scale_transform |
| 55 | |
| 56 | __str__ = mtransforms._make_str_method( |
| 57 | "_axis", |