@@ -31,6 +31,17 @@ class PolarTransform(mtransforms.Transform):
31
31
32
32
def __init__ (self , axis = None , use_rmin = True ,
33
33
_apply_theta_transforms = True ):
34
+ """
35
+ Parameters
36
+ ----------
37
+ axis : `~matplotlib.axis.Axis`, optional
38
+ Axis associated with this transform. This is used to get the
39
+ minimum radial limit.
40
+ use_rmin : `bool`, optional
41
+ If ``True``, subtract the minimum radial axis limit before
42
+ transforming to Cartesian coordinates. *axis* must also be
43
+ specified for this to take effect.
44
+ """
34
45
super ().__init__ ()
35
46
self ._axis = axis
36
47
self ._use_rmin = use_rmin
@@ -171,6 +182,17 @@ class InvertedPolarTransform(mtransforms.Transform):
171
182
172
183
def __init__ (self , axis = None , use_rmin = True ,
173
184
_apply_theta_transforms = True ):
185
+ """
186
+ Parameters
187
+ ----------
188
+ axis : `~matplotlib.axis.Axis`, optional
189
+ Axis associated with this transform. This is used to get the
190
+ minimum radial limit.
191
+ use_rmin : `bool`, optional
192
+ If ``True`` add the minimum radial axis limit after
193
+ transforming from Cartesian coordinates. *axis* must also be
194
+ specified for this to take effect.
195
+ """
174
196
super ().__init__ ()
175
197
self ._axis = axis
176
198
self ._use_rmin = use_rmin
0 commit comments