@@ -457,15 +457,15 @@ def contains_point(self, point, transform=None, radius=0.0):
457457 point : (float, float)
458458 The point (x, y) to check.
459459 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
461461 by *transform*; i.e. for a correct check, *transform* should
462462 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*.
465465 The path is extended tangentially by *radius/2*; i.e. if you would
466466 draw the path with a linewidth of *radius*, all points on the line
467467 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
469469 will be considered outside the area.
470470
471471 Returns
@@ -492,15 +492,15 @@ def contains_points(self, points, transform=None, radius=0.0):
492492 points : (N, 2) array
493493 The points to check. Columns contain x and y values.
494494 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
496496 by *transform*; i.e. for a correct check, *transform* should
497497 transform the path into the coordinate system of *points*.
498498 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*.
500500 The path is extended tangentially by *radius/2*; i.e. if you would
501501 draw the path with a linewidth of *radius*, all points on the line
502502 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
504504 will be considered outside the area.
505505
506506 Returns
0 commit comments