4917f17bf6
of note, all edge walker tests succeed at this point git-svn-id: http://skia.googlecode.com/svn/trunk@3330 2bbb7eff-a529-9590-31e7-b0007b416f81
36 lines
839 B
C++
36 lines
839 B
C++
#include "CubicIntersection_TestData.h"
|
|
#include "Intersection_Tests.h"
|
|
|
|
void cubecode_test(int test);
|
|
void testSimplify();
|
|
|
|
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();
|
|
|
|
SimplifyRectangularPaths_Test();
|
|
SimplifyPolygonPaths_Test();
|
|
SimplifyQuadralateralPaths_Test();
|
|
|
|
QuadraticCoincidence_Test();
|
|
QuadraticReduceOrder_Test();
|
|
QuadraticBezierClip_Test();
|
|
QuadraticIntersection_Test();
|
|
|
|
CubicParameterization_Test();
|
|
CubicCoincidence_Test();
|
|
CubicReduceOrder_Test();
|
|
CubicBezierClip_Test();
|
|
CubicIntersection_Test();
|
|
|
|
}
|