27accef223
Review URL: https://codereview.appspot.com/5576043 git-svn-id: http://skia.googlecode.com/svn/trunk@3087 2bbb7eff-a529-9590-31e7-b0007b416f81
30 lines
707 B
C++
30 lines
707 B
C++
#include "CubicIntersection_TestData.h"
|
|
#include "Intersection_Tests.h"
|
|
|
|
void cubecode_test(int test);
|
|
|
|
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();
|
|
|
|
QuadraticCoincidence_Test();
|
|
QuadraticReduceOrder_Test();
|
|
QuadraticBezierClip_Test();
|
|
QuadraticIntersection_Test();
|
|
|
|
CubicParameterization_Test();
|
|
CubicCoincidence_Test();
|
|
CubicReduceOrder_Test();
|
|
CubicBezierClip_Test();
|
|
CubicIntersection_Test();
|
|
}
|