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

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

Issue 1297013002: remove unused code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix fuzz test failures Created 5 years, 4 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
« no previous file with comments | « src/pathops/SkPathOpsCubic.cpp ('k') | src/pathops/SkPathOpsLine.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 SkPathOpsLine_DEFINED 7 #ifndef SkPathOpsLine_DEFINED
8 #define SkPathOpsLine_DEFINED 8 #define SkPathOpsLine_DEFINED
9 9
10 #include "SkPathOpsPoint.h" 10 #include "SkPathOpsPoint.h"
11 11
12 struct SkDLine { 12 struct SkDLine {
13 SkDPoint fPts[2]; 13 SkDPoint fPts[2];
14 14
15 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < 2); return fPts[n]; } 15 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < 2); return fPts[n]; }
16 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < 2); return fPts[n]; } 16 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < 2); return fPts[n]; }
17 17
18 const SkDLine& set(const SkPoint pts[2]) { 18 const SkDLine& set(const SkPoint pts[2]) {
19 fPts[0] = pts[0]; 19 fPts[0] = pts[0];
20 fPts[1] = pts[1]; 20 fPts[1] = pts[1];
21 return *this; 21 return *this;
22 } 22 }
23 23
24 double exactPoint(const SkDPoint& xy) const; 24 double exactPoint(const SkDPoint& xy) const;
25 static double ExactPointH(const SkDPoint& xy, double left, double right, dou ble y); 25 static double ExactPointH(const SkDPoint& xy, double left, double right, dou ble y);
26 static double ExactPointV(const SkDPoint& xy, double top, double bottom, dou ble x); 26 static double ExactPointV(const SkDPoint& xy, double top, double bottom, dou ble x);
27 27
28 // only used by testing
29 double isLeft(const SkDPoint& pt) const;
30
31 double nearPoint(const SkDPoint& xy, bool* unequal) const; 28 double nearPoint(const SkDPoint& xy, bool* unequal) const;
32 bool nearRay(const SkDPoint& xy) const; 29 bool nearRay(const SkDPoint& xy) const;
33 static double NearPointH(const SkDPoint& xy, double left, double right, doub le y); 30 static double NearPointH(const SkDPoint& xy, double left, double right, doub le y);
34 static double NearPointV(const SkDPoint& xy, double top, double bottom, doub le x); 31 static double NearPointV(const SkDPoint& xy, double top, double bottom, doub le x);
35 SkDPoint ptAtT(double t) const; 32 SkDPoint ptAtT(double t) const;
36 33
37 void dump() const; 34 void dump() const;
38 void dumpID(int ) const; 35 void dumpID(int ) const;
39 void dumpInner() const; 36 void dumpInner() const;
40 }; 37 };
41 38
42 #endif 39 #endif
OLDNEW
« no previous file with comments | « src/pathops/SkPathOpsCubic.cpp ('k') | src/pathops/SkPathOpsLine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698