Chromium Code Reviews

Unified Diff: include/core/SkRect.h

Issue 808793002: add sample for arcTo (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | samplecode/SampleCode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkRect.h
diff --git a/include/core/SkRect.h b/include/core/SkRect.h
index 8e4d669c48279c02c08ede805d43f44c935b9dcd..cafc59afa73684f407057dd749fd42da768039bd 100644
--- a/include/core/SkRect.h
+++ b/include/core/SkRect.h
@@ -692,6 +692,11 @@ public:
return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom);
}
+ bool intersects(const SkRect& r) const {
+ return Intersects(fLeft, fTop, fRight, fBottom,
+ r.fLeft, r.fTop, r.fRight, r.fBottom);
+ }
+
/**
* Return true if rectangles a and b are not empty and intersect.
*/
« no previous file with comments | « no previous file | samplecode/SampleCode.h » ('j') | no next file with comments »

Powered by Google App Engine