| Index: experimental/Intersection/QuadraticParameterization_TestUtility.cpp
|
| diff --git a/experimental/Intersection/QuadraticParameterization_TestUtility.cpp b/experimental/Intersection/QuadraticParameterization_TestUtility.cpp
|
| deleted file mode 100644
|
| index 7c91eb5e8b679b7393f00fa6fedc614bfd0c4024..0000000000000000000000000000000000000000
|
| --- a/experimental/Intersection/QuadraticParameterization_TestUtility.cpp
|
| +++ /dev/null
|
| @@ -1,16 +0,0 @@
|
| -// included by QuadraticParameterization.cpp
|
| -// accesses internal functions to validate parameterized coefficients
|
| -
|
| -#include "Parameterization_Test.h"
|
| -
|
| -bool point_on_parameterized_curve(const Quadratic& quad, const _Point& point) {
|
| - QuadImplicitForm q(quad);
|
| - double xx = q.x2() * point.x * point.x;
|
| - double xy = q.xy() * point.x * point.y;
|
| - double yy = q.y2() * point.y * point.y;
|
| - double x = q.x() * point.x;
|
| - double y = q.y() * point.y;
|
| - double c = q.c();
|
| - double sum = xx + xy + yy + x + y + c;
|
| - return approximately_zero(sum);
|
| -}
|
|
|