2012-01-25 18:57:23 +00:00
|
|
|
#include "CubicIntersection_TestData.h"
|
|
|
|
#include "Intersection_Tests.h"
|
|
|
|
|
|
|
|
void cubecode_test(int test);
|
2012-02-03 22:07:47 +00:00
|
|
|
void testSimplify();
|
2012-01-25 18:57:23 +00:00
|
|
|
|
|
|
|
void Intersection_Tests() {
|
|
|
|
cubecode_test(1);
|
|
|
|
convert_testx();
|
|
|
|
// tests are in dependency / complexity order
|
|
|
|
Inline_Tests();
|
|
|
|
ConvexHull_Test();
|
|
|
|
ConvexHull_X_Test();
|
|
|
|
|
|
|
|
LineParameter_Test();
|
|
|
|
LineIntersection_Test();
|
|
|
|
LineQuadraticIntersection_Test();
|
|
|
|
LineCubicIntersection_Test();
|
|
|
|
|
2012-02-28 16:57:05 +00:00
|
|
|
SimplifyRectangularPaths_Test();
|
2012-03-05 22:01:21 +00:00
|
|
|
SimplifyPolygonPaths_Test();
|
|
|
|
SimplifyQuadralateralPaths_Test();
|
2012-02-03 22:07:47 +00:00
|
|
|
|
2012-01-25 18:57:23 +00:00
|
|
|
QuadraticCoincidence_Test();
|
|
|
|
QuadraticReduceOrder_Test();
|
|
|
|
QuadraticBezierClip_Test();
|
|
|
|
QuadraticIntersection_Test();
|
|
|
|
|
|
|
|
CubicParameterization_Test();
|
|
|
|
CubicCoincidence_Test();
|
|
|
|
CubicReduceOrder_Test();
|
|
|
|
CubicBezierClip_Test();
|
|
|
|
CubicIntersection_Test();
|
2012-02-03 22:07:47 +00:00
|
|
|
|
2012-01-25 18:57:23 +00:00
|
|
|
}
|