@@ -457,15 +457,15 @@ def contains_point(self, point, transform=None, radius=0.0):
457
457
point : (float, float)
458
458
The point (x, y) to check.
459
459
transform : `matplotlib.transforms.Transform`, optional
460
- If not ``None``, *point* will be compared to self transformed
460
+ If not ``None``, *point* will be compared to `` self`` transformed
461
461
by *transform*; i.e. for a correct check, *transform* should
462
462
transform the path into the coordinate system of *point*.
463
- radius : float, default: 0.
464
- Adds an additional margin on the path in coordinates of *point*.
463
+ radius : float, default: 0
464
+ Add an additional margin on the path in coordinates of *point*.
465
465
The path is extended tangentially by *radius/2*; i.e. if you would
466
466
draw the path with a linewidth of *radius*, all points on the line
467
467
would still be considered to be contained in the area. Conversely,
468
- negative values shrink the area; points on the imaginary line
468
+ negative values shrink the area: Points on the imaginary line
469
469
will be considered outside the area.
470
470
471
471
Returns
@@ -492,15 +492,15 @@ def contains_points(self, points, transform=None, radius=0.0):
492
492
points : (N, 2) array
493
493
The points to check. Columns contain x and y values.
494
494
transform : `matplotlib.transforms.Transform`, optional
495
- If not ``None``, *points* will be compared to self transformed
495
+ If not ``None``, *points* will be compared to `` self`` transformed
496
496
by *transform*; i.e. for a correct check, *transform* should
497
497
transform the path into the coordinate system of *points*.
498
498
radius : float, default: 0.
499
- Adds an additional margin on the path in coordinates of *points*.
499
+ Add an additional margin on the path in coordinates of *points*.
500
500
The path is extended tangentially by *radius/2*; i.e. if you would
501
501
draw the path with a linewidth of *radius*, all points on the line
502
502
would still be considered to be contained in the area. Conversely,
503
- negative values shrink the area; points on the imaginary line
503
+ negative values shrink the area: Points on the imaginary line
504
504
will be considered outside the area.
505
505
506
506
Returns
0 commit comments