OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 #include "SkIntersections.h" | 7 #include "SkIntersections.h" |
8 #include "SkPathOpsLine.h" | 8 #include "SkPathOpsLine.h" |
9 #include "Test.h" | 9 #include "Test.h" |
10 | 10 |
11 // FIXME: add tests for intersecting, non-intersecting, degenerate, coincident | 11 // FIXME: add tests for intersecting, non-intersecting, degenerate, coincident |
12 static const SkDLine tests[][2] = { | 12 static const SkDLine tests[][2] = { |
| 13 #if 0 // FIXME: these fail because one line is too short and appears quasi-coin
cident |
| 14 {{{{158.000000, 926.000000}, {1108.00000, 926.000000}}}, |
| 15 {{{1108.00000, 926.000000}, {1108.00000, 925.999634}}}}, |
| 16 {{{{1108,926}, {1108,925.9996337890625}}}, {{{158,926}, {1108,926}}}}, |
| 17 #endif |
13 {{{{192, 4}, {243, 4}}}, {{{246, 4}, {189, 4}}}}, | 18 {{{{192, 4}, {243, 4}}}, {{{246, 4}, {189, 4}}}}, |
14 {{{{246, 4}, {189, 4}}}, {{{192, 4}, {243, 4}}}}, | 19 {{{{246, 4}, {189, 4}}}, {{{192, 4}, {243, 4}}}}, |
15 {{{{5, 0}, {0, 5}}}, {{{5, 4}, {1, 4}}}}, | 20 {{{{5, 0}, {0, 5}}}, {{{5, 4}, {1, 4}}}}, |
16 {{{{0, 0}, {1, 0}}}, {{{1, 0}, {0, 0}}}}, | 21 {{{{0, 0}, {1, 0}}}, {{{1, 0}, {0, 0}}}}, |
17 {{{{0, 0}, {0, 0}}}, {{{0, 0}, {1, 0}}}}, | 22 {{{{0, 0}, {0, 0}}}, {{{0, 0}, {1, 0}}}}, |
18 {{{{0, 1}, {0, 1}}}, {{{0, 0}, {0, 2}}}}, | 23 {{{{0, 1}, {0, 1}}}, {{{0, 0}, {0, 2}}}}, |
19 {{{{0, 0}, {1, 0}}}, {{{0, 0}, {2, 0}}}}, | 24 {{{{0, 0}, {1, 0}}}, {{{0, 0}, {2, 0}}}}, |
20 {{{{1, 1}, {2, 2}}}, {{{0, 0}, {3, 3}}}}, | 25 {{{{1, 1}, {2, 2}}}, {{{0, 0}, {3, 3}}}}, |
21 {{{{166.86950047022856, 112.69654129527828}, {166.86948801592692, 112.696557
41235339}}}, | 26 {{{{166.86950047022856, 112.69654129527828}, {166.86948801592692, 112.696557
41235339}}}, |
22 {{{166.86960700313026, 112.6965477747386}, {166.86925794355412, 112.6965647
1103423}}}} | 27 {{{166.86960700313026, 112.6965477747386}, {166.86925794355412, 112.6965647
1103423}}}} |
23 }; | 28 }; |
24 | 29 |
25 static const size_t tests_count = SK_ARRAY_COUNT(tests); | 30 static const size_t tests_count = SK_ARRAY_COUNT(tests); |
26 | 31 |
27 static const SkDLine noIntersect[][2] = { | 32 static const SkDLine noIntersect[][2] = { |
28 {{{{0, 0}, {1, 0}}}, {{{3, 0}, {2, 0}}}}, | 33 {{{{0, 0}, {1, 0}}}, {{{3, 0}, {2, 0}}}}, |
29 {{{{0, 0}, {0, 0}}}, {{{1, 0}, {2, 0}}}}, | 34 {{{{0, 0}, {0, 0}}}, {{{1, 0}, {2, 0}}}}, |
30 {{{{0, 1}, {0, 1}}}, {{{0, 3}, {0, 2}}}}, | 35 {{{{0, 1}, {0, 1}}}, {{{0, 3}, {0, 2}}}}, |
31 {{{{0, 0}, {1, 0}}}, {{{2, 0}, {3, 0}}}}, | 36 {{{{0, 0}, {1, 0}}}, {{{2, 0}, {3, 0}}}}, |
32 {{{{1, 1}, {2, 2}}}, {{{4, 4}, {3, 3}}}}, | 37 {{{{1, 1}, {2, 2}}}, {{{4, 4}, {3, 3}}}}, |
33 }; | 38 }; |
34 | 39 |
35 static const size_t noIntersect_count = SK_ARRAY_COUNT(noIntersect); | 40 static const size_t noIntersect_count = SK_ARRAY_COUNT(noIntersect); |
36 | 41 |
| 42 static const SkDLine coincidentTests[][2] = { |
| 43 {{{{235.681549, 531.000000}, {280.318420, 321.000000}}}, |
| 44 {{{286.695129, 291.000000}, {229.304855, 561.000000}}}}, |
| 45 }; |
| 46 |
| 47 static const size_t coincidentTests_count = SK_ARRAY_COUNT(coincidentTests); |
| 48 |
37 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, co
nst SkDLine& line2, | 49 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, co
nst SkDLine& line2, |
38 const SkIntersections& ts) { | 50 const SkIntersections& ts) { |
39 for (int i = 0; i < ts.used(); ++i) { | 51 for (int i = 0; i < ts.used(); ++i) { |
40 SkDPoint result1 = line1.xyAtT(ts[0][i]); | 52 SkDPoint result1 = line1.xyAtT(ts[0][i]); |
41 SkDPoint result2 = line2.xyAtT(ts[1][i]); | 53 SkDPoint result2 = line2.xyAtT(ts[1][i]); |
42 if (!result1.approximatelyEqual(result2)) { | 54 if (!result1.approximatelyEqual(result2)) { |
43 REPORTER_ASSERT(reporter, ts.used() != 1); | 55 REPORTER_ASSERT(reporter, ts.used() != 1); |
44 result2 = line2.xyAtT(ts[1][i ^ 1]); | 56 result2 = line2.xyAtT(ts[1][i ^ 1]); |
45 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2)); | 57 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2)); |
46 REPORTER_ASSERT(reporter, result1.approximatelyEqual(ts.pt(i).asSkPo
int())); | 58 REPORTER_ASSERT(reporter, result1.approximatelyEqual(ts.pt(i).asSkPo
int())); |
47 } | 59 } |
48 } | 60 } |
49 } | 61 } |
50 | 62 |
| 63 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const Sk
DLine& line2) { |
| 64 SkIntersections i; |
| 65 int pts = i.intersect(line1, line2); |
| 66 REPORTER_ASSERT(reporter, pts); |
| 67 REPORTER_ASSERT(reporter, pts == i.used()); |
| 68 check_results(reporter, line1, line2, i); |
| 69 if (line1[0] == line1[1] || line2[0] == line2[1]) { |
| 70 return; |
| 71 } |
| 72 if (line1[0].fY == line1[1].fY) { |
| 73 double left = SkTMin(line1[0].fX, line1[1].fX); |
| 74 double right = SkTMax(line1[0].fX, line1[1].fX); |
| 75 SkIntersections ts; |
| 76 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); |
| 77 check_results(reporter, line2, line1, ts); |
| 78 } |
| 79 if (line2[0].fY == line2[1].fY) { |
| 80 double left = SkTMin(line2[0].fX, line2[1].fX); |
| 81 double right = SkTMax(line2[0].fX, line2[1].fX); |
| 82 SkIntersections ts; |
| 83 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); |
| 84 check_results(reporter, line1, line2, ts); |
| 85 } |
| 86 if (line1[0].fX == line1[1].fX) { |
| 87 double top = SkTMin(line1[0].fY, line1[1].fY); |
| 88 double bottom = SkTMax(line1[0].fY, line1[1].fY); |
| 89 SkIntersections ts; |
| 90 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); |
| 91 check_results(reporter, line2, line1, ts); |
| 92 } |
| 93 if (line2[0].fX == line2[1].fX) { |
| 94 double top = SkTMin(line2[0].fY, line2[1].fY); |
| 95 double bottom = SkTMax(line2[0].fY, line2[1].fY); |
| 96 SkIntersections ts; |
| 97 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); |
| 98 check_results(reporter, line1, line2, ts); |
| 99 } |
| 100 } |
| 101 |
| 102 static void testOneCoincident(skiatest::Reporter* reporter, const SkDLine& line1
, |
| 103 const SkDLine& line2) { |
| 104 SkIntersections ts2; |
| 105 int pts2 = ts2.intersect(line1, line2); |
| 106 REPORTER_ASSERT(reporter, pts2 == 2); |
| 107 REPORTER_ASSERT(reporter, pts2 == ts2.used()); |
| 108 check_results(reporter, line1, line2, ts2); |
| 109 #if 0 |
| 110 SkIntersections ts; |
| 111 int pts = ts.intersect(line1, line2); |
| 112 REPORTER_ASSERT(reporter, pts == pts2); |
| 113 REPORTER_ASSERT(reporter, pts == 2); |
| 114 REPORTER_ASSERT(reporter, pts == ts.used()); |
| 115 check_results(reporter, line1, line2, ts); |
| 116 #endif |
| 117 } |
| 118 |
51 static void PathOpsLineIntersectionTest(skiatest::Reporter* reporter) { | 119 static void PathOpsLineIntersectionTest(skiatest::Reporter* reporter) { |
52 size_t index; | 120 size_t index; |
| 121 for (index = 0; index < coincidentTests_count; ++index) { |
| 122 const SkDLine& line1 = coincidentTests[index][0]; |
| 123 const SkDLine& line2 = coincidentTests[index][1]; |
| 124 testOneCoincident(reporter, line1, line2); |
| 125 reporter->bumpTestCount(); |
| 126 } |
53 for (index = 0; index < tests_count; ++index) { | 127 for (index = 0; index < tests_count; ++index) { |
54 const SkDLine& line1 = tests[index][0]; | 128 const SkDLine& line1 = tests[index][0]; |
55 const SkDLine& line2 = tests[index][1]; | 129 const SkDLine& line2 = tests[index][1]; |
56 SkIntersections ts; | 130 testOne(reporter, line1, line2); |
57 int pts = ts.intersect(line1, line2); | 131 reporter->bumpTestCount(); |
58 REPORTER_ASSERT(reporter, pts); | |
59 REPORTER_ASSERT(reporter, pts == ts.used()); | |
60 check_results(reporter, line1, line2, ts); | |
61 if (line1[0] == line1[1] || line2[0] == line2[1]) { | |
62 continue; | |
63 } | |
64 if (line1[0].fY == line1[1].fY) { | |
65 double left = SkTMin(line1[0].fX, line1[1].fX); | |
66 double right = SkTMax(line1[0].fX, line1[1].fX); | |
67 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); | |
68 check_results(reporter, line2, line1, ts); | |
69 } | |
70 if (line2[0].fY == line2[1].fY) { | |
71 double left = SkTMin(line2[0].fX, line2[1].fX); | |
72 double right = SkTMax(line2[0].fX, line2[1].fX); | |
73 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); | |
74 check_results(reporter, line1, line2, ts); | |
75 } | |
76 if (line1[0].fX == line1[1].fX) { | |
77 double top = SkTMin(line1[0].fY, line1[1].fY); | |
78 double bottom = SkTMax(line1[0].fY, line1[1].fY); | |
79 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); | |
80 check_results(reporter, line2, line1, ts); | |
81 } | |
82 if (line2[0].fX == line2[1].fX) { | |
83 double top = SkTMin(line2[0].fY, line2[1].fY); | |
84 double bottom = SkTMax(line2[0].fY, line2[1].fY); | |
85 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); | |
86 check_results(reporter, line1, line2, ts); | |
87 } | |
88 } | 132 } |
89 for (index = 0; index < noIntersect_count; ++index) { | 133 for (index = 0; index < noIntersect_count; ++index) { |
90 const SkDLine& line1 = noIntersect[index][0]; | 134 const SkDLine& line1 = noIntersect[index][0]; |
91 const SkDLine& line2 = noIntersect[index][1]; | 135 const SkDLine& line2 = noIntersect[index][1]; |
92 SkIntersections ts; | 136 SkIntersections ts; |
93 int pts = ts.intersect(line1, line2); | 137 int pts = ts.intersect(line1, line2); |
94 REPORTER_ASSERT(reporter, !pts); | 138 REPORTER_ASSERT(reporter, !pts); |
95 REPORTER_ASSERT(reporter, pts == ts.used()); | 139 REPORTER_ASSERT(reporter, pts == ts.used()); |
| 140 reporter->bumpTestCount(); |
96 } | 141 } |
97 } | 142 } |
98 | 143 |
| 144 static void PathOpsLineIntersectionTestOne(skiatest::Reporter* reporter) { |
| 145 int index = 0; |
| 146 SkASSERT(index < (int) tests_count); |
| 147 const SkDLine& line1 = tests[index][0]; |
| 148 const SkDLine& line2 = tests[index][1]; |
| 149 testOne(reporter, line1, line2); |
| 150 } |
| 151 |
| 152 static void PathOpsLineIntersectionTestOneCoincident(skiatest::Reporter* reporte
r) { |
| 153 int index = 0; |
| 154 SkASSERT(index < (int) coincidentTests_count); |
| 155 const SkDLine& line1 = coincidentTests[index][0]; |
| 156 const SkDLine& line2 = coincidentTests[index][1]; |
| 157 testOneCoincident(reporter, line1, line2); |
| 158 } |
| 159 |
99 #include "TestClassDef.h" | 160 #include "TestClassDef.h" |
100 DEFINE_TESTCLASS_SHORT(PathOpsLineIntersectionTest) | 161 DEFINE_TESTCLASS_SHORT(PathOpsLineIntersectionTest) |
| 162 |
| 163 DEFINE_TESTCLASS_SHORT(PathOpsLineIntersectionTestOne) |
| 164 |
| 165 DEFINE_TESTCLASS_SHORT(PathOpsLineIntersectionTestOneCoincident) |
OLD | NEW |