Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: src/pathops/SkPathOpsBounds.h

Issue 12827020: Add base types for path ops (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/pathops/SkPathOps.h ('k') | src/pathops/SkPathOpsBounds.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #ifndef SkPathOpBounds_DEFINED
8 #define SkPathOpBounds_DEFINED
9
10 #include "SkPathOpsRect.h"
11 #include "SkRect.h"
12
13 // SkPathOpsBounds, unlike SkRect, does not consider a line to be empty.
14 struct SkPathOpsBounds : public SkRect {
15 static bool Intersects(const SkPathOpsBounds& a, const SkPathOpsBounds& b) {
16 return a.fLeft <= b.fRight && b.fLeft <= a.fRight &&
17 a.fTop <= b.fBottom && b.fTop <= a.fBottom;
18 }
19
20 // FIXME: add() is generically useful and could be added directly to SkRect
21 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
22 if (left < fLeft) fLeft = left;
23 if (top < fTop) fTop = top;
24 if (right > fRight) fRight = right;
25 if (bottom > fBottom) fBottom = bottom;
26 }
27
28 void add(const SkPathOpsBounds& toAdd) {
29 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
30 }
31
32 void add(const SkPoint& pt) {
33 if (pt.fX < fLeft) fLeft = pt.fX;
34 if (pt.fY < fTop) fTop = pt.fY;
35 if (pt.fX > fRight) fRight = pt.fX;
36 if (pt.fY > fBottom) fBottom = pt.fY;
37 }
38
39 // unlike isEmpty(), this permits lines, but not points
40 // FIXME: unused for now
41 bool isReallyEmpty() const {
42 // use !<= instead of > to detect NaN values
43 return !(fLeft <= fRight) || !(fTop <= fBottom)
44 || (fLeft == fRight && fTop == fBottom);
45 }
46
47 void setCubicBounds(const SkPoint a[4]);
48 void setLineBounds(const SkPoint a[2]);
49 void setQuadBounds(const SkPoint a[3]);
50
51 void setPointBounds(const SkPoint& pt) {
52 fLeft = fRight = pt.fX;
53 fTop = fBottom = pt.fY;
54 }
55
56 typedef SkRect INHERITED;
57 };
58
59 extern void (SkPathOpsBounds::*SetCurveBounds[])(const SkPoint[]);
60
61 #endif
OLDNEW
« no previous file with comments | « include/pathops/SkPathOps.h ('k') | src/pathops/SkPathOpsBounds.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698