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``, add the minimum radial axis limit after
(self, axis=None, use_rmin=True,
*, apply_theta_transforms=False)
| 187 | |
| 188 | @_api.delete_parameter('3.11', 'apply_theta_transforms') |
| 189 | def __init__(self, axis=None, use_rmin=True, |
| 190 | *, apply_theta_transforms=False): |
| 191 | """ |
| 192 | Parameters |
| 193 | ---------- |
| 194 | axis : `~matplotlib.axis.Axis`, optional |
| 195 | Axis associated with this transform. This is used to get the |
| 196 | minimum radial limit. |
| 197 | use_rmin : `bool`, optional |
| 198 | If ``True``, add the minimum radial axis limit after |
| 199 | transforming from Cartesian coordinates. *axis* must also be |
| 200 | specified for this to take effect. |
| 201 | """ |
| 202 | super().__init__() |
| 203 | self._axis = axis |
| 204 | self._use_rmin = use_rmin |
| 205 | |
| 206 | __str__ = mtransforms._make_str_method( |
| 207 | "_axis", |