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]; |
-}; |