@@ -129,17 +129,17 @@ def contains(self, mouseevent, radius=None):
129
129
130
130
Parameters
131
131
----------
132
- mouseevent : . MouseEvent
132
+ mouseevent : `~matplotlib.backend_bases. MouseEvent`
133
133
Where the user clicked.
134
134
135
135
radius : float, optional
136
136
Additional margin on the patch in target coordinates of
137
- `.Patches .get_transform`. See `.Path.contains_point` for further
137
+ `.Patch .get_transform`. See `.Path.contains_point` for further
138
138
details.
139
139
140
140
If `None`, the default value depends on the state of the object:
141
141
142
- - If `matplotlib .Artist.get_picker` is a number, the default
142
+ - If `.Artist.get_picker` is a number, the default
143
143
is that value. This is so that picking works as expected.
144
144
- Otherwise if the edge color has a non-zero alpha, the default
145
145
is half of the linewidth. This is so that all the colored
@@ -183,17 +183,17 @@ def contains_point(self, point, radius=None):
183
183
----------
184
184
point : (float, float)
185
185
The point (x, y) to check, in target coordinates of
186
- `.Patches .get_transform() `. These are display coordinates for patches
186
+ `.Patch .get_transform`. These are display coordinates for patches
187
187
that are added to a figure or axes.
188
188
189
189
radius : float, optional
190
190
Additional margin on the patch in target coordinates of
191
- `.Patches .get_transform`. See `.Path.contains_point` for further
191
+ `.Patch .get_transform`. See `.Path.contains_point` for further
192
192
details.
193
193
194
194
If `None`, the default value depends on the state of the object:
195
195
196
- - If `matplotlib .Artist.get_picker` is a number, the default
196
+ - If `.Artist.get_picker` is a number, the default
197
197
is that value. This is so that picking works as expected.
198
198
- Otherwise if the edge color has a non-zero alpha the default
199
199
is half of the linewidth. This is so that all the colored
@@ -250,16 +250,16 @@ def contains_points(self, points, radius=None):
250
250
that are added to a figure or axes. Columns contain x and y values.
251
251
radius : float, optional
252
252
Additional margin on the patch in target coordinates of
253
- `.Patches .get_transform`. See `.Path.contains_point` for further
253
+ `.Patch .get_transform`. See `.Path.contains_point` for further
254
254
details.
255
255
256
256
If `None`, the default value depends on the state of the object:
257
257
258
- - If `matplotlib .Artist.get_picker` is a number, the default
258
+ - If `.Artist.get_picker` is a number, the default
259
259
is that value. This is so that picking works as expected.
260
260
- Otherwise if the edge color has a non-zero alpha the default
261
261
is half of the linewidth. This is so that all the colored
262
- pixels are "in" the patch
262
+ pixels are "in" the patch.
263
263
- Finally, if the edge has 0 alpha, the default is 0. This is
264
264
so that patches without a stroked edge do not have points
265
265
outside of the filled region report as "in" due to an
0 commit comments