work in progress
in the middle of switching to sortless version
git-svn-id: http://skia.googlecode.com/svn/trunk@3768 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineQuadraticIntersection_Test.cpp b/experimental/Intersection/LineQuadraticIntersection_Test.cpp
index 017a44e..a48f0af 100644
--- a/experimental/Intersection/LineQuadraticIntersection_Test.cpp
+++ b/experimental/Intersection/LineQuadraticIntersection_Test.cpp
@@ -8,7 +8,9 @@
Quadratic quad;
_Line line;
} lineQuadTests[] = {
- {{{0, 0}, {0, 1}, {1, 1}}, {{0, 1}, {1, 0}}}
+ {{{2, 0}, {1, 1}, {2, 2}}, {{0, 0}, {0, 2}}},
+ {{{4, 0}, {0, 1}, {4, 2}}, {{3, 1}, {4, 1}}},
+ {{{0, 0}, {0, 1}, {1, 1}}, {{0, 1}, {1, 0}}},
};
size_t lineQuadTests_count = sizeof(lineQuadTests) / sizeof(lineQuadTests[0]);