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 "PathOpsTestCommon.h" | 7 #include "PathOpsTestCommon.h" |
8 #include "SkIntersections.h" | 8 #include "SkIntersections.h" |
9 #include "SkPathOpsLine.h" | 9 #include "SkPathOpsLine.h" |
10 #include "Test.h" | 10 #include "Test.h" |
11 | 11 |
12 // FIXME: add tests for intersecting, non-intersecting, degenerate, coincident | 12 // FIXME: add tests for intersecting, non-intersecting, degenerate, coincident |
13 static const SkDLine tests[][2] = { | 13 static const SkDLine tests[][2] = { |
| 14 {{{{0.00010360032320022583, 1.0172703415155411}, {0.00014114845544099808, 1.0200
891587883234}}}, |
| 15 {{{0.00010259449481964111, 1.017270140349865}, {0.00018215179443359375, 1.02289
0567779541}}}}, |
| 16 |
14 #if 0 | 17 #if 0 |
15 // these do intersect at a pair of points, but not close enough for check re
sults liking | 18 // these do intersect at a pair of points, but not close enough for check re
sults liking |
16 {{{{365.848175,5081.15186}, {368,5103}}}, {{{367.967712,5102.61084}, {368.27
8717,5105.71045}}}}, | 19 {{{{365.848175,5081.15186}, {368,5103}}}, {{{367.967712,5102.61084}, {368.27
8717,5105.71045}}}}, |
17 #endif | 20 #endif |
18 {{{{30,20}, {30,50}}}, {{{24,30}, {36,30}}}}, | 21 {{{{30,20}, {30,50}}}, {{{24,30}, {36,30}}}}, |
19 {{{{323,193}, {-317,193}}}, {{{0,994}, {0,0}}}}, | 22 {{{{323,193}, {-317,193}}}, {{{0,994}, {0,0}}}}, |
20 {{{{90,230}, {160,60}}}, {{{60,120}, {260,120}}}}, | 23 {{{{90,230}, {160,60}}}, {{{60,120}, {260,120}}}}, |
21 {{{{90,230}, {160,60}}}, {{{181.176468,120}, {135.294128,120}}}}, | 24 {{{{90,230}, {160,60}}}, {{{181.176468,120}, {135.294128,120}}}}, |
22 {{{{181.1764678955078125f, 120}, {186.3661956787109375f, 134.7042236328125f}
}}, | 25 {{{{181.1764678955078125f, 120}, {186.3661956787109375f, 134.7042236328125f}
}}, |
23 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 1
33.7258148193359375f}}}}, | 26 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 1
33.7258148193359375f}}}}, |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 {{{{186.3661956787109375f, 134.7042236328125f}, {187.8782806396484375f, 133.
7258148193359375f}}}, | 78 {{{{186.3661956787109375f, 134.7042236328125f}, {187.8782806396484375f, 133.
7258148193359375f}}}, |
76 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 1
33.7258148193359375f}}}}, | 79 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 1
33.7258148193359375f}}}}, |
77 | 80 |
78 {{{{235.681549, 531.000000}, {280.318420, 321.000000}}}, | 81 {{{{235.681549, 531.000000}, {280.318420, 321.000000}}}, |
79 {{{286.695129, 291.000000}, {229.304855, 561.000000}}}}, | 82 {{{286.695129, 291.000000}, {229.304855, 561.000000}}}}, |
80 }; | 83 }; |
81 | 84 |
82 static const size_t coincidentTests_count = SK_ARRAY_COUNT(coincidentTests); | 85 static const size_t coincidentTests_count = SK_ARRAY_COUNT(coincidentTests); |
83 | 86 |
84 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, co
nst SkDLine& line2, | 87 static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, co
nst SkDLine& line2, |
85 const SkIntersections& ts) { | 88 const SkIntersections& ts, bool nearAllowed) { |
86 for (int i = 0; i < ts.used(); ++i) { | 89 for (int i = 0; i < ts.used(); ++i) { |
87 SkDPoint result1 = line1.ptAtT(ts[0][i]); | 90 SkDPoint result1 = line1.ptAtT(ts[0][i]); |
88 SkDPoint result2 = line2.ptAtT(ts[1][i]); | 91 SkDPoint result2 = line2.ptAtT(ts[1][i]); |
| 92 if (nearAllowed && result1.roughlyEqual(result2)) { |
| 93 continue; |
| 94 } |
89 if (!result1.approximatelyEqual(result2) && !ts.nearlySame(i)) { | 95 if (!result1.approximatelyEqual(result2) && !ts.nearlySame(i)) { |
90 REPORTER_ASSERT(reporter, ts.used() != 1); | 96 REPORTER_ASSERT(reporter, ts.used() != 1); |
91 result2 = line2.ptAtT(ts[1][i ^ 1]); | 97 result2 = line2.ptAtT(ts[1][i ^ 1]); |
92 if (!result1.approximatelyEqual(result2)) { | 98 if (!result1.approximatelyEqual(result2)) { |
93 SkDebugf("."); | 99 SkDebugf("."); |
94 } | 100 } |
95 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2)); | 101 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2)); |
96 REPORTER_ASSERT(reporter, result1.approximatelyEqual(ts.pt(i).asSkPo
int())); | 102 REPORTER_ASSERT(reporter, result1.approximatelyEqual(ts.pt(i).asSkPo
int())); |
97 } | 103 } |
98 } | 104 } |
99 } | 105 } |
100 | 106 |
101 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const Sk
DLine& line2) { | 107 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const Sk
DLine& line2, |
| 108 bool nearAllowed) { |
102 SkASSERT(ValidLine(line1)); | 109 SkASSERT(ValidLine(line1)); |
103 SkASSERT(ValidLine(line2)); | 110 SkASSERT(ValidLine(line2)); |
104 SkIntersections i; | 111 SkIntersections i; |
| 112 i.allowNear(nearAllowed); |
105 int pts = i.intersect(line1, line2); | 113 int pts = i.intersect(line1, line2); |
106 REPORTER_ASSERT(reporter, pts); | 114 REPORTER_ASSERT(reporter, pts); |
107 REPORTER_ASSERT(reporter, pts == i.used()); | 115 REPORTER_ASSERT(reporter, pts == i.used()); |
108 check_results(reporter, line1, line2, i); | 116 check_results(reporter, line1, line2, i, nearAllowed); |
109 if (line1[0] == line1[1] || line2[0] == line2[1]) { | 117 if (line1[0] == line1[1] || line2[0] == line2[1]) { |
110 return; | 118 return; |
111 } | 119 } |
112 if (line1[0].fY == line1[1].fY) { | 120 if (line1[0].fY == line1[1].fY) { |
113 double left = SkTMin(line1[0].fX, line1[1].fX); | 121 double left = SkTMin(line1[0].fX, line1[1].fX); |
114 double right = SkTMax(line1[0].fX, line1[1].fX); | 122 double right = SkTMax(line1[0].fX, line1[1].fX); |
115 SkIntersections ts; | 123 SkIntersections ts; |
116 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); | 124 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); |
117 check_results(reporter, line2, line1, ts); | 125 check_results(reporter, line2, line1, ts, nearAllowed); |
118 } | 126 } |
119 if (line2[0].fY == line2[1].fY) { | 127 if (line2[0].fY == line2[1].fY) { |
120 double left = SkTMin(line2[0].fX, line2[1].fX); | 128 double left = SkTMin(line2[0].fX, line2[1].fX); |
121 double right = SkTMax(line2[0].fX, line2[1].fX); | 129 double right = SkTMax(line2[0].fX, line2[1].fX); |
122 SkIntersections ts; | 130 SkIntersections ts; |
123 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); | 131 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); |
124 check_results(reporter, line1, line2, ts); | 132 check_results(reporter, line1, line2, ts, nearAllowed); |
125 } | 133 } |
126 if (line1[0].fX == line1[1].fX) { | 134 if (line1[0].fX == line1[1].fX) { |
127 double top = SkTMin(line1[0].fY, line1[1].fY); | 135 double top = SkTMin(line1[0].fY, line1[1].fY); |
128 double bottom = SkTMax(line1[0].fY, line1[1].fY); | 136 double bottom = SkTMax(line1[0].fY, line1[1].fY); |
129 SkIntersections ts; | 137 SkIntersections ts; |
130 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); | 138 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); |
131 check_results(reporter, line2, line1, ts); | 139 check_results(reporter, line2, line1, ts, nearAllowed); |
132 } | 140 } |
133 if (line2[0].fX == line2[1].fX) { | 141 if (line2[0].fX == line2[1].fX) { |
134 double top = SkTMin(line2[0].fY, line2[1].fY); | 142 double top = SkTMin(line2[0].fY, line2[1].fY); |
135 double bottom = SkTMax(line2[0].fY, line2[1].fY); | 143 double bottom = SkTMax(line2[0].fY, line2[1].fY); |
136 SkIntersections ts; | 144 SkIntersections ts; |
137 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); | 145 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); |
138 check_results(reporter, line1, line2, ts); | 146 check_results(reporter, line1, line2, ts, nearAllowed); |
139 } | 147 } |
140 reporter->bumpTestCount(); | 148 reporter->bumpTestCount(); |
141 } | 149 } |
142 | 150 |
143 static void testOneCoincident(skiatest::Reporter* reporter, const SkDLine& line1
, | 151 static void testOneCoincident(skiatest::Reporter* reporter, const SkDLine& line1
, |
144 const SkDLine& line2) { | 152 const SkDLine& line2) { |
145 SkASSERT(ValidLine(line1)); | 153 SkASSERT(ValidLine(line1)); |
146 SkASSERT(ValidLine(line2)); | 154 SkASSERT(ValidLine(line2)); |
147 SkIntersections ts; | 155 SkIntersections ts; |
148 int pts = ts.intersect(line1, line2); | 156 int pts = ts.intersect(line1, line2); |
149 REPORTER_ASSERT(reporter, pts == 2); | 157 REPORTER_ASSERT(reporter, pts == 2); |
150 REPORTER_ASSERT(reporter, pts == ts.used()); | 158 REPORTER_ASSERT(reporter, pts == ts.used()); |
151 check_results(reporter, line1, line2, ts); | 159 check_results(reporter, line1, line2, ts, false); |
152 if (line1[0] == line1[1] || line2[0] == line2[1]) { | 160 if (line1[0] == line1[1] || line2[0] == line2[1]) { |
153 return; | 161 return; |
154 } | 162 } |
155 if (line1[0].fY == line1[1].fY) { | 163 if (line1[0].fY == line1[1].fY) { |
156 double left = SkTMin(line1[0].fX, line1[1].fX); | 164 double left = SkTMin(line1[0].fX, line1[1].fX); |
157 double right = SkTMax(line1[0].fX, line1[1].fX); | 165 double right = SkTMax(line1[0].fX, line1[1].fX); |
158 SkIntersections ts; | 166 SkIntersections ts; |
159 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); | 167 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left); |
160 REPORTER_ASSERT(reporter, pts == 2); | 168 REPORTER_ASSERT(reporter, pts == 2); |
161 REPORTER_ASSERT(reporter, pts == ts.used()); | 169 REPORTER_ASSERT(reporter, pts == ts.used()); |
162 check_results(reporter, line2, line1, ts); | 170 check_results(reporter, line2, line1, ts, false); |
163 } | 171 } |
164 if (line2[0].fY == line2[1].fY) { | 172 if (line2[0].fY == line2[1].fY) { |
165 double left = SkTMin(line2[0].fX, line2[1].fX); | 173 double left = SkTMin(line2[0].fX, line2[1].fX); |
166 double right = SkTMax(line2[0].fX, line2[1].fX); | 174 double right = SkTMax(line2[0].fX, line2[1].fX); |
167 SkIntersections ts; | 175 SkIntersections ts; |
168 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); | 176 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left); |
169 REPORTER_ASSERT(reporter, pts == 2); | 177 REPORTER_ASSERT(reporter, pts == 2); |
170 REPORTER_ASSERT(reporter, pts == ts.used()); | 178 REPORTER_ASSERT(reporter, pts == ts.used()); |
171 check_results(reporter, line1, line2, ts); | 179 check_results(reporter, line1, line2, ts, false); |
172 } | 180 } |
173 if (line1[0].fX == line1[1].fX) { | 181 if (line1[0].fX == line1[1].fX) { |
174 double top = SkTMin(line1[0].fY, line1[1].fY); | 182 double top = SkTMin(line1[0].fY, line1[1].fY); |
175 double bottom = SkTMax(line1[0].fY, line1[1].fY); | 183 double bottom = SkTMax(line1[0].fY, line1[1].fY); |
176 SkIntersections ts; | 184 SkIntersections ts; |
177 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); | 185 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top); |
178 REPORTER_ASSERT(reporter, pts == 2); | 186 REPORTER_ASSERT(reporter, pts == 2); |
179 REPORTER_ASSERT(reporter, pts == ts.used()); | 187 REPORTER_ASSERT(reporter, pts == ts.used()); |
180 check_results(reporter, line2, line1, ts); | 188 check_results(reporter, line2, line1, ts, false); |
181 } | 189 } |
182 if (line2[0].fX == line2[1].fX) { | 190 if (line2[0].fX == line2[1].fX) { |
183 double top = SkTMin(line2[0].fY, line2[1].fY); | 191 double top = SkTMin(line2[0].fY, line2[1].fY); |
184 double bottom = SkTMax(line2[0].fY, line2[1].fY); | 192 double bottom = SkTMax(line2[0].fY, line2[1].fY); |
185 SkIntersections ts; | 193 SkIntersections ts; |
186 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); | 194 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top); |
187 REPORTER_ASSERT(reporter, pts == 2); | 195 REPORTER_ASSERT(reporter, pts == 2); |
188 REPORTER_ASSERT(reporter, pts == ts.used()); | 196 REPORTER_ASSERT(reporter, pts == ts.used()); |
189 check_results(reporter, line1, line2, ts); | 197 check_results(reporter, line1, line2, ts, false); |
190 } | 198 } |
191 reporter->bumpTestCount(); | 199 reporter->bumpTestCount(); |
192 } | 200 } |
193 | 201 |
194 DEF_TEST(PathOpsLineIntersection, reporter) { | 202 DEF_TEST(PathOpsLineIntersection, reporter) { |
195 size_t index; | 203 size_t index; |
196 for (index = 0; index < coincidentTests_count; ++index) { | 204 for (index = 0; index < coincidentTests_count; ++index) { |
197 const SkDLine& line1 = coincidentTests[index][0]; | 205 const SkDLine& line1 = coincidentTests[index][0]; |
198 const SkDLine& line2 = coincidentTests[index][1]; | 206 const SkDLine& line2 = coincidentTests[index][1]; |
199 testOneCoincident(reporter, line1, line2); | 207 testOneCoincident(reporter, line1, line2); |
200 } | 208 } |
201 for (index = 0; index < tests_count; ++index) { | 209 for (index = 0; index < tests_count; ++index) { |
202 const SkDLine& line1 = tests[index][0]; | 210 const SkDLine& line1 = tests[index][0]; |
203 const SkDLine& line2 = tests[index][1]; | 211 const SkDLine& line2 = tests[index][1]; |
204 testOne(reporter, line1, line2); | 212 testOne(reporter, line1, line2, true); |
205 } | 213 } |
206 for (index = 0; index < noIntersect_count; ++index) { | 214 for (index = 0; index < noIntersect_count; ++index) { |
207 const SkDLine& line1 = noIntersect[index][0]; | 215 const SkDLine& line1 = noIntersect[index][0]; |
208 const SkDLine& line2 = noIntersect[index][1]; | 216 const SkDLine& line2 = noIntersect[index][1]; |
209 SkIntersections ts; | 217 SkIntersections ts; |
210 int pts = ts.intersect(line1, line2); | 218 int pts = ts.intersect(line1, line2); |
211 REPORTER_ASSERT(reporter, !pts); | 219 REPORTER_ASSERT(reporter, !pts); |
212 REPORTER_ASSERT(reporter, pts == ts.used()); | 220 REPORTER_ASSERT(reporter, pts == ts.used()); |
213 reporter->bumpTestCount(); | 221 reporter->bumpTestCount(); |
214 } | 222 } |
215 } | 223 } |
216 | 224 |
217 DEF_TEST(PathOpsLineIntersectionOneOff, reporter) { | 225 DEF_TEST(PathOpsLineIntersectionOneOff, reporter) { |
218 int index = 0; | 226 int index = 0; |
219 SkASSERT(index < (int) tests_count); | 227 SkASSERT(index < (int) tests_count); |
220 testOne(reporter, tests[index][0], tests[index][1]); | 228 testOne(reporter, tests[index][0], tests[index][1], true); |
221 testOne(reporter, tests[1][0], tests[1][1]); | 229 } |
| 230 |
| 231 DEF_TEST(PathOpsLineIntersectionExactOneOff, reporter) { |
| 232 int index = 0; |
| 233 SkASSERT(index < (int) tests_count); |
| 234 testOne(reporter, tests[index][0], tests[index][1], false); |
222 } | 235 } |
223 | 236 |
224 DEF_TEST(PathOpsLineIntersectionOneCoincident, reporter) { | 237 DEF_TEST(PathOpsLineIntersectionOneCoincident, reporter) { |
225 int index = 0; | 238 int index = 0; |
226 SkASSERT(index < (int) coincidentTests_count); | 239 SkASSERT(index < (int) coincidentTests_count); |
227 const SkDLine& line1 = coincidentTests[index][0]; | 240 const SkDLine& line1 = coincidentTests[index][0]; |
228 const SkDLine& line2 = coincidentTests[index][1]; | 241 const SkDLine& line2 = coincidentTests[index][1]; |
229 testOneCoincident(reporter, line1, line2); | 242 testOneCoincident(reporter, line1, line2); |
230 } | 243 } |
OLD | NEW |