diff options
author | Cary Clark <caryclark@skia.org> | 2018-02-20 14:33:13 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-02-20 19:56:23 +0000 |
commit | edfe6703fae3becc53feed27c4fa09a95ea7e19d (patch) | |
tree | 377c639078e6adc3a36ca4b86a3f365f4235ce48 /docs | |
parent | 0c3137c4f45ffbf09a41526e5eb96e12cc6f35ae (diff) |
fix Rect doc
move the #Line directive to make bookmaker happy
Docs-Preview: https://skia.org/?cl=108740
Bug: skia:6898
Change-Id: I8b993bab6b4f69cc266941e281a00a945f32f25e
Reviewed-on: https://skia-review.googlesource.com/108740
Commit-Queue: Cary Clark <caryclark@skia.org>
Reviewed-by: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/SkRect_Reference.bmh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/SkRect_Reference.bmh b/docs/SkRect_Reference.bmh index 3b9f1199df..df781f890c 100644 --- a/docs/SkRect_Reference.bmh +++ b/docs/SkRect_Reference.bmh @@ -1497,6 +1497,7 @@ describes an area: fLeft is less than fRight, and fTop is less than fBottom. #Method bool contains(SkScalar x, SkScalar y) const #In Intersection +#Line # returns true if points are equal or inside ## Returns true if: fLeft <= x < fRight && fTop <= y < fBottom. Returns false if SkRect is empty. @@ -1530,7 +1531,6 @@ rect: (30, 50, 40, 60) does not contain (29, 59) #Method bool contains(const SkRect& r) const #In Intersection -#Line # returns true if points are equal or inside ## Returns true if Rect contains r. Returns false if Rect is empty or r is empty. |