| Index: include/core/SkPoint.h
|
| diff --git a/include/core/SkPoint.h b/include/core/SkPoint.h
|
| index 5eca72f6b63d60d36def8a6198c729bd185d0de0..b94f730ec2846056540bd657859826c8b3bb8f6d 100644
|
| --- a/include/core/SkPoint.h
|
| +++ b/include/core/SkPoint.h
|
| @@ -353,7 +353,7 @@ struct SK_API SkPoint {
|
| /** Return true if this point and the given point are far enough apart
|
| such that a vector between them would be non-degenerate.
|
|
|
| - WARNING: Unlike the deprecated version of equalsWithinTolerance(),
|
| + WARNING: Unlike the explicit tolerance version,
|
| this method does not use componentwise comparison. Instead, it
|
| uses a comparison designed to match judgments elsewhere regarding
|
| degeneracy ("points A and B are so close that the vector between them
|
| @@ -363,10 +363,7 @@ struct SK_API SkPoint {
|
| return !CanNormalize(fX - p.fX, fY - p.fY);
|
| }
|
|
|
| - /** DEPRECATED: Return true if this and the given point are componentwise
|
| - within tolerance "tol".
|
| -
|
| - WARNING: There is no guarantee that the result will reflect judgments
|
| + /** WARNING: There is no guarantee that the result will reflect judgments
|
| elsewhere regarding degeneracy ("points A and B are so close that the
|
| vector between them is essentially zero").
|
| */
|
|
|