caryclark@google.com | 27accef | 2012-01-25 18:57:23 +0000 | [diff] [blame] | 1 | #include "CubicIntersection_TestData.h" |
| 2 | #include "Intersection_Tests.h" |
| 3 | |
| 4 | void cubecode_test(int test); |
| 5 | |
| 6 | void Intersection_Tests() { |
| 7 | cubecode_test(1); |
| 8 | convert_testx(); |
| 9 | // tests are in dependency / complexity order |
| 10 | Inline_Tests(); |
| 11 | ConvexHull_Test(); |
| 12 | ConvexHull_X_Test(); |
| 13 | |
| 14 | LineParameter_Test(); |
| 15 | LineIntersection_Test(); |
| 16 | LineQuadraticIntersection_Test(); |
| 17 | LineCubicIntersection_Test(); |
| 18 | |
| 19 | QuadraticCoincidence_Test(); |
| 20 | QuadraticReduceOrder_Test(); |
| 21 | QuadraticBezierClip_Test(); |
| 22 | QuadraticIntersection_Test(); |
| 23 | |
| 24 | CubicParameterization_Test(); |
| 25 | CubicCoincidence_Test(); |
| 26 | CubicReduceOrder_Test(); |
| 27 | CubicBezierClip_Test(); |
| 28 | CubicIntersection_Test(); |
| 29 | } |