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

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

Issue 1037953004: add conics to path ops (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix linux build Created 5 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 #ifndef SkPathOpsRect_DEFINED 7 #ifndef SkPathOpsRect_DEFINED
8 #define SkPathOpsRect_DEFINED 8 #define SkPathOpsRect_DEFINED
9 9
10 #include "SkPathOpsPoint.h" 10 #include "SkPathOpsPoint.h"
(...skipping 30 matching lines...) Expand all
41 } 41 }
42 42
43 double width() const { 43 double width() const {
44 return fRight - fLeft; 44 return fRight - fLeft;
45 } 45 }
46 46
47 double height() const { 47 double height() const {
48 return fBottom - fTop; 48 return fBottom - fTop;
49 } 49 }
50 50
51 void setBounds(const SkDConic&);
51 void setBounds(const SkDCubic&); 52 void setBounds(const SkDCubic&);
52 void setBounds(const SkDQuad&); 53 void setBounds(const SkDQuad&);
53 }; 54 };
54 55
55 #endif 56 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698