skia2/experimental/Intersection/Intersection_Tests.cpp

36 lines
839 B
C++
Raw Normal View History

#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();
}