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

Unified Diff: experimental/Intersection/QuadraticParameterization.h

Issue 867213004: remove prototype pathops code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: experimental/Intersection/QuadraticParameterization.h
diff --git a/experimental/Intersection/QuadraticParameterization.h b/experimental/Intersection/QuadraticParameterization.h
deleted file mode 100644
index ca7d072208fdd064b00f0d6bcdb2fc7ae27f382f..0000000000000000000000000000000000000000
--- a/experimental/Intersection/QuadraticParameterization.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "DataTypes.h"
-
-class QuadImplicitForm {
-public:
- QuadImplicitForm(const Quadratic& q);
- bool implicit_match(const QuadImplicitForm& two) const;
-
- double x2() const { return p[xx_coeff]; }
- double xy() const { return p[xy_coeff]; }
- double y2() const { return p[yy_coeff]; }
- double x() const { return p[x_coeff]; }
- double y() const { return p[y_coeff]; }
- double c() const { return p[c_coeff]; }
-
-private:
- enum Coeffs {
- xx_coeff,
- xy_coeff,
- yy_coeff,
- x_coeff,
- y_coeff,
- c_coeff,
- coeff_count
- };
-
- double p[coeff_count];
-};
« no previous file with comments | « experimental/Intersection/QuadraticLineSegments.cpp ('k') | experimental/Intersection/QuadraticParameterization.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698