Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: tests/PathOpsCubicIntersectionTestData.cpp

Issue 12880016: Add intersections for path ops (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/PathOpsCubicIntersectionTestData.h ('k') | tests/PathOpsCubicLineIntersectionTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #include "PathOpsCubicIntersectionTestData.h"
8 #include <limits>
9
10 static const double D = FLT_EPSILON / 2;
11 static const double G = FLT_EPSILON / 3;
12 static const double N = -FLT_EPSILON / 2;
13 static const double M = -FLT_EPSILON / 3;
14
15 const SkDCubic pointDegenerates[] = {
16 {{{0, 0}, {0, 0}, {0, 0}, {0, 0}}},
17 {{{1, 1}, {1, 1}, {1, 1}, {1, 1}}},
18 {{{1 + FLT_EPSILON_HALF, 1}, {1, 1 + FLT_EPSILON_HALF}, {1, 1}, {1, 1}}},
19 {{{1 + D, 1}, {1 - D, 1}, {1, 1}, {1, 1}}},
20 {{{0, 0}, {0, 0}, {1, 0}, {0, 0}}},
21 {{{0, 0}, {1, 0}, {0, 0}, {0, 0}}},
22 {{{0, 0}, {0, 0}, {0, 1}, {0, 0}}},
23 {{{0, 0}, {0, 1}, {0, 0}, {0, 0}}},
24 {{{0, 0}, {0, 0}, {1, 1}, {0, 0}}},
25 {{{0, 0}, {1, 1}, {0, 0}, {0, 0}}},
26 {{{0, 0}, {1, 1}, {2, 2}, {0, 0}}},
27 {{{1, 1}, {2, 2}, {2, 2}, {1, 1}}},
28 {{{0, 0}, {0, D}, {1, 0}, {0, 0}}},
29 {{{0, 0}, {1, 0}, {0, D}, {0, 0}}},
30 {{{0, 0}, {D, 0}, {0, 1}, {0, 0}}},
31 {{{0, 0}, {0, 1}, {D, 0}, {0, 0}}},
32 {{{1, 1}, {2, 2}, {2, 2+D}, {1, 1}}},
33 {{{0, 0}, {0, N}, {1, 0}, {0, 0}}},
34 {{{0, 0}, {1, 0}, {0, N}, {0, 0}}},
35 {{{0, 0}, {N, 0}, {0, 1}, {0, 0}}},
36 {{{0, 0}, {0, 1}, {N, 0}, {0, 0}}},
37 {{{0, 0}, {1, 1}, {N, 0}, {0, 0}}},
38 {{{0, 0}, {D, 0}, {1, 1}, {0, 0}}},
39 {{{0, 0}, {1, 1}, {D, 0}, {0, 0}}},
40 {{{0, 0}, {N, 0}, {1, 1}, {0, 0}}},
41 {{{1, 1}, {2, 2}, {2, 2+N}, {1, 1}}},
42 };
43
44 const size_t pointDegenerates_count = sizeof(pointDegenerates) / sizeof(pointDeg enerates[0]);
45
46 const SkDCubic notPointDegenerates[] = {
47 {{{1 + FLT_EPSILON * 2, 1}, {1, FLT_EPSILON * 2}, {1, 1}, {1, 1}}},
48 {{{1 + FLT_EPSILON * 2, 1}, {1 - FLT_EPSILON * 2, 1}, {1, 1}, {1, 1}}}
49 };
50
51 const size_t notPointDegenerates_count =
52 sizeof(notPointDegenerates) / sizeof(notPointDegenerates[0]);
53
54 // from http://www.truetex.com/bezint.htm
55 const SkDCubic tests[][2] = {
56 { // intersects in one place (data gives bezier clip fits
57 {{{0, 45},
58 {6.0094158284751593, 51.610357411322688},
59 {12.741093228940867, 55.981703949474607},
60 {20.021417396476362, 58.652245509710262}}},
61 {{{2.2070737699246674, 52.703494107327209},
62 {31.591482272629477, 23.811002295222025},
63 {76.824588616426425, 44.049473790502674},
64 {119.25488947221436, 55.599248272955073}}}
65 }, { // intersects in three places
66 {{{0, 45}, {50, 100}, {150, 0}, {200, 55}}},
67 {{{0, 55}, {50, 0}, {150, 100}, {200, 45}}}
68 }, { // intersects in one place, cross over is nearly parallel
69 {{{0, 0}, {0, 100}, {200, 0}, {200, 100}}},
70 {{{0, 100}, {0, 0}, {200, 100}, {200, 0}}}
71 }, { // intersects in two places
72 {{{0, 0}, {0, 100}, {200, 100}, {200, 0}}},
73 {{{0, 100}, {0, 0}, {200, 0}, {200, 100}}}
74 }, {
75 {{{150, 100}, {150 + 0.1, 150}, {150, 200}, {150, 250}}},
76 {{{250, 150}, {200, 150 + 0.1}, {150, 150}, {100, 150}}}
77 }, { // single intersection around 168,185
78 {{{200, 100}, {150, 100}, {150, 150}, {200, 150}}},
79 {{{250, 150}, {250, 100}, {100, 100}, {100, 150}}}
80 }, {
81 {{{1.0, 1.5}, {15.5, 0.5}, {-8.0, 3.5}, {5.0, 1.5}}},
82 {{{4.0, 0.5}, {5.0, 15.0}, {2.0, -8.5}, {4.0, 4.5}}}
83 }, {
84 {{{664.00168, 0}, {726.11545, 124.22757}, {736.89069, 267.89743},
85 {694.0017, 400.0002}}},
86 {{{850.66843, 115.55563}, {728.515, 115.55563}, {725.21347, 275.15309},
87 {694.0017, 400.0002}}}
88 }, {
89 {{{1, 1}, {12.5, 6.5}, {-4, 6.5}, {7.5, 1}}},
90 {{{1, 6.5}, {12.5, 1}, {-4, 1}, {.5, 6}}}
91 }, {
92 {{{315.748, 312.84}, {312.644, 318.134}, {305.836, 319.909}, {300.542, 3 16.804}}},
93 {{{317.122, 309.05}, {316.112, 315.102}, {310.385, 319.19}, {304.332, 3 18.179}}}
94 }, {
95 {{{1046.604051, 172.937967}, {1046.604051, 178.9763059}, {1041.76745, 183.9279165}, {1035.703842, 184.0432409}}},
96 {{{1046.452235, 174.7640504}, {1045.544872, 180.1973817}, {1040.837966, 184.0469882}, {1035.505925, 184.0469882}}}
97 }, {
98 {{{125.79356, 199.57382}, {51.16556, 128.93575}, {87.494, 16.67848}, {1 67.29361, 16.67848}}},
99 {{{167.29361, 55.81876}, {100.36128, 55.81876}, {68.64099, 145.4755}, {1 25.7942, 199.57309}}}
100 }
101 };
102
103 const size_t tests_count = sizeof(tests) / sizeof(tests[0]);
104
105 SkDCubic hexTests[][2] = {
106 {
107 {{{0}}} // placeholder for hex converted below
108 }
109 };
110
111 const size_t hexTests_count = sizeof(hexTests) / sizeof(hexTests[0]);
112
113 static const uint64_t testx[2][8] = {
114 {
115 0xf0d0d1ca63075a40LLU, 0x9408ce996a237740LLU, 0x6d5675460fbe5e40LLU, 0x6 ef501e1b7487940LLU,
116 0x9a71d2f8143d6540LLU, 0x6bc18bbe02907a40LLU, 0x5b94d92093aa6b40LLU, 0x6 ac18bbe02907a40LLU
117 },
118 {
119 0x92c56ed7b6145d40LLU, 0xede4f1255edb7740LLU, 0x1138c1101af75940LLU, 0x4 2e4f1255edb7740LLU,
120 0x408e51603ad95640LLU, 0x1e2e8fe9dd927740LLU, 0x1cb4777cd3a75440LLU, 0x2 12e1390de017740LLU
121 }
122 };
123
124 void convert_testx() {
125 const uint64_t* inPtr = testx[0];
126 double* outPtr = &hexTests[sizeof(tests) / sizeof(tests[0]) - 1][0][0].fX;
127 for (unsigned index = 0; index < sizeof(testx) / sizeof(testx[0][0]); ++inde x) {
128 uint64_t input = *inPtr++;
129 unsigned char* output = (unsigned char*) outPtr++;
130 for (unsigned byte = 0; byte < sizeof(input); ++byte) {
131 output[byte] = input >> (7 - byte) * 8;
132 }
133 }
134 }
135
136 const SkDCubic lines[] = {
137 {{{0, 0}, {0, 0}, {0, 0}, {1, 0}}}, // 0: horizontal
138 {{{1, 0}, {0, 0}, {0, 0}, {0, 0}}},
139 {{{1, 0}, {2, 0}, {3, 0}, {4, 0}}},
140 {{{0, 0}, {0, 0}, {0, 0}, {0, 1}}}, // 5: vertical
141 {{{0, 1}, {0, 0}, {0, 0}, {0, 0}}},
142 {{{0, 1}, {0, 2}, {0, 3}, {0, 4}}},
143 {{{0, 0}, {0, 0}, {0, 0}, {1, 1}}}, // 10: 3 coincident
144 {{{1, 1}, {0, 0}, {0, 0}, {0, 0}}},
145 {{{0, 0}, {0, 0}, {1, 1}, {2, 2}}}, // 14: 2 coincident
146 {{{0, 0}, {1, 1}, {0, 0}, {2, 2}}},
147 {{{1, 1}, {0, 0}, {0, 0}, {2, 2}}}, // 17:
148 {{{1, 1}, {0, 0}, {2, 2}, {0, 0}}},
149 {{{1, 1}, {2, 2}, {0, 0}, {0, 0}}},
150 {{{1, 1}, {2, 2}, {3, 3}, {2, 2}}}, // middle-last coincident
151 {{{1, 1}, {2, 2}, {3, 3}, {3, 3}}}, // middle-last coincident
152 {{{1, 1}, {1, 1}, {2, 2}, {2, 2}}}, // 2 pairs coincident
153 {{{1, 1}, {2, 2}, {1, 1}, {2, 2}}},
154 {{{1, 1}, {1, 1}, {3, 3}, {3, 3}}}, // first-middle middle-last coincident
155 {{{1, 1}, {2, 2}, {3, 3}, {4, 4}}}, // no coincident
156 {{{1, 1}, {3, 3}, {2, 2}, {4, 4}}},
157 {{{1, 1}, {2, 2}, {4, 4}, {3, 3}}},
158 {{{1, 1}, {3, 3}, {4, 4}, {2, 2}}},
159 {{{1, 1}, {4, 4}, {2, 2}, {3, 3}}},
160 {{{1, 1}, {4, 4}, {3, 3}, {2, 2}}},
161 {{{2, 2}, {1, 1}, {3, 3}, {4, 4}}},
162 {{{2, 2}, {1, 1}, {4, 4}, {3, 3}}},
163 {{{2, 2}, {3, 3}, {1, 1}, {4, 4}}},
164 {{{2, 2}, {3, 3}, {4, 4}, {1, 1}}},
165 {{{2, 2}, {4, 4}, {1, 1}, {3, 3}}},
166 {{{2, 2}, {4, 4}, {3, 3}, {1, 1}}},
167 };
168
169 const size_t lines_count = sizeof(lines) / sizeof(lines[0]);
170
171 // 'not a line' tries to fool the line detection code
172 const SkDCubic notLines[] = {
173 {{{0, 0}, {0, 0}, {0, 1}, {1, 0}}},
174 {{{0, 0}, {0, 1}, {0, 0}, {1, 0}}},
175 {{{0, 0}, {0, 1}, {1, 0}, {0, 0}}},
176 {{{0, 1}, {0, 0}, {0, 0}, {1, 0}}},
177 {{{0, 1}, {0, 0}, {1, 0}, {0, 0}}},
178 {{{0, 1}, {1, 0}, {0, 0}, {0, 0}}},
179 };
180
181 const size_t notLines_count = sizeof(notLines) / sizeof(notLines[0]);
182
183 static const double E = FLT_EPSILON * 2;
184 static const double F = FLT_EPSILON * 3;
185
186 const SkDCubic modEpsilonLines[] = {
187 {{{0, E}, {0, 0}, {0, 0}, {1, 0}}}, // horizontal
188 {{{0, 0}, {0, E}, {1, 0}, {0, 0}}},
189 {{{0, 0}, {1, 0}, {0, E}, {0, 0}}},
190 {{{1, 0}, {0, 0}, {0, 0}, {0, E}}},
191 {{{1, E}, {2, 0}, {3, 0}, {4, 0}}},
192 {{{E, 0}, {0, 0}, {0, 0}, {0, 1}}}, // vertical
193 {{{0, 0}, {E, 0}, {0, 1}, {0, 0}}},
194 {{{0, 0}, {0, 1}, {E, 0}, {0, 0}}},
195 {{{0, 1}, {0, 0}, {0, 0}, {E, 0}}},
196 {{{E, 1}, {0, 2}, {0, 3}, {0, 4}}},
197 {{{E, 0}, {0, 0}, {0, 0}, {1, 1}}}, // 3 coincident
198 {{{0, 0}, {E, 0}, {1, 1}, {0, 0}}},
199 {{{0, 0}, {1, 1}, {E, 0}, {0, 0}}},
200 {{{1, 1}, {0, 0}, {0, 0}, {E, 0}}},
201 {{{0, E}, {0, 0}, {1, 1}, {2, 2}}}, // 2 coincident
202 {{{0, 0}, {1, 1}, {0, E}, {2, 2}}},
203 {{{0, 0}, {1, 1}, {2, 2}, {0, E}}},
204 {{{1, 1}, {0, E}, {0, 0}, {2, 2}}},
205 {{{1, 1}, {0, E}, {2, 2}, {0, 0}}},
206 {{{1, 1}, {2, 2}, {E, 0}, {0, 0}}},
207 {{{1, 1}, {2, 2+E}, {3, 3}, {2, 2}}}, // middle-last coincident
208 {{{1, 1}, {2+E, 2}, {3, 3}, {3, 3}}}, // middle-last coincident
209 {{{1, 1}, {1, 1}, {2, 2}, {2+E, 2}}}, // 2 pairs coincident
210 {{{1, 1}, {2, 2}, {1, 1}, {2+E, 2}}},
211 {{{1, 1}, {2, 2}, {2, 2+E}, {1, 1}}},
212 {{{1, 1}, {1, 1+E}, {3, 3}, {3, 3}}}, // first-middle middle-last coinciden t
213 {{{1, 1}, {2+E, 2}, {3, 3}, {4, 4}}}, // no coincident
214 {{{1, 1}, {3, 3}, {2, 2}, {4, 4+F}}}, // INVESTIGATE: why the epsilon is bi gger
215 {{{1, 1+F}, {2, 2}, {4, 4}, {3, 3}}}, // INVESTIGATE: why the epsilon is bi gger
216 {{{1, 1}, {3, 3}, {4, 4+E}, {2, 2}}},
217 {{{1, 1}, {4, 4}, {2, 2}, {3, 3+E}}},
218 {{{1, 1}, {4, 4}, {3, 3}, {2+E, 2}}},
219 {{{2, 2}, {1, 1}, {3+E, 3}, {4, 4}}},
220 {{{2, 2}, {1+E, 1}, {4, 4}, {3, 3}}},
221 {{{2, 2+E}, {3, 3}, {1, 1}, {4, 4}}},
222 {{{2+E, 2}, {3, 3}, {4, 4}, {1, 1}}},
223 {{{2, 2}, {4+E, 4}, {1, 1}, {3, 3}}},
224 {{{2, 2}, {4, 4}, {3, 3}, {1, 1+E}}},
225 };
226
227 const size_t modEpsilonLines_count = sizeof(modEpsilonLines) / sizeof(modEpsilon Lines[0]);
228
229 const SkDCubic lessEpsilonLines[] = {
230 {{{0, D}, {0, 0}, {0, 0}, {1, 0}}}, // horizontal
231 {{{1, 0}, {0, 0}, {0, 0}, {0, D}}},
232 {{{1, D}, {2, 0}, {3, 0}, {4, 0}}},
233 {{{D, 0}, {0, 0}, {0, 0}, {0, 1}}}, // vertical
234 {{{0, 1}, {0, 0}, {0, 0}, {D, 0}}},
235 {{{D, 1}, {0, 2}, {0, 3}, {0, 4}}},
236 {{{D, 0}, {0, 0}, {0, 0}, {1, 1}}}, // 3 coincident
237 {{{1, 1}, {0, 0}, {0, 0}, {D, 0}}},
238 {{{0, D}, {0, 0}, {1, 1}, {2, 2}}}, // 2 coincident
239 {{{0, 0}, {1, 1}, {0, D}, {2, 2}}},
240 {{{0, 0}, {1, 1}, {2, 2}, {0, D}}},
241 {{{1, 1}, {0, D}, {0, 0}, {2, 2}}},
242 {{{1, 1}, {0, D}, {2, 2}, {0, 0}}},
243 {{{1, 1}, {2, 2}, {D, 0}, {0, 0}}},
244 {{{1, 1}, {2, 2+D}, {3, 3}, {2, 2}}}, // middle-last coincident
245 {{{1, 1}, {2+D, 2}, {3, 3}, {3, 3}}}, // middle-last coincident
246 {{{1, 1}, {1, 1}, {2, 2}, {2+D, 2}}}, // 2 pairs coincident
247 {{{1, 1}, {2, 2}, {1, 1}, {2+D, 2}}},
248 {{{1, 1}, {1, 1+D}, {3, 3}, {3, 3}}}, // first-middle middle-last coinciden t
249 {{{1, 1}, {2+D/2, 2}, {3, 3}, {4, 4}}}, // no coincident (FIXME: N as oppos ed to N/2 failed)
250 {{{1, 1}, {3, 3}, {2, 2}, {4, 4+D}}},
251 {{{1, 1+D}, {2, 2}, {4, 4}, {3, 3}}},
252 {{{1, 1}, {3, 3}, {4, 4+D}, {2, 2}}},
253 {{{1, 1}, {4, 4}, {2, 2}, {3, 3+D}}},
254 {{{1, 1}, {4, 4}, {3, 3}, {2+G, 2}}}, // INVESTIGATE: why the epsilon is sm aller
255 {{{2, 2}, {1, 1}, {3+D, 3}, {4, 4}}},
256 {{{2, 2}, {1+D, 1}, {4, 4}, {3, 3}}},
257 {{{2, 2+D}, {3, 3}, {1, 1}, {4, 4}}},
258 {{{2+G, 2}, {3, 3}, {4, 4}, {1, 1}}}, // INVESTIGATE: why the epsilon is sm aller
259 {{{2, 2}, {4+D, 4}, {1, 1}, {3, 3}}},
260 {{{2, 2}, {4, 4}, {3, 3}, {1, 1+D}}},
261 };
262
263 const size_t lessEpsilonLines_count = sizeof(lessEpsilonLines) / sizeof(lessEpsi lonLines[0]);
264
265 const SkDCubic negEpsilonLines[] = {
266 {{{0, N}, {0, 0}, {0, 0}, {1, 0}}}, // horizontal
267 {{{1, 0}, {0, 0}, {0, 0}, {0, N}}},
268 {{{1, N}, {2, 0}, {3, 0}, {4, 0}}},
269 {{{N, 0}, {0, 0}, {0, 0}, {0, 1}}}, // vertical
270 {{{0, 1}, {0, 0}, {0, 0}, {N, 0}}},
271 {{{N, 1}, {0, 2}, {0, 3}, {0, 4}}},
272 {{{N, 0}, {0, 0}, {0, 0}, {1, 1}}}, // 3 coincident
273 {{{1, 1}, {0, 0}, {0, 0}, {N, 0}}},
274 {{{0, N}, {0, 0}, {1, 1}, {2, 2}}}, // 2 coincident
275 {{{0, 0}, {1, 1}, {0, N}, {2, 2}}},
276 {{{0, 0}, {1, 1}, {2, 2}, {0, N}}},
277 {{{1, 1}, {0, N}, {0, 0}, {2, 2}}},
278 {{{1, 1}, {0, N}, {2, 2}, {0, 0}}},
279 {{{1, 1}, {2, 2}, {N, 0}, {0, 0}}},
280 {{{1, 1}, {2, 2+N}, {3, 3}, {2, 2}}}, // middle-last coincident
281 {{{1, 1}, {2+N, 2}, {3, 3}, {3, 3}}}, // middle-last coincident
282 {{{1, 1}, {1, 1}, {2, 2}, {2+N, 2}}}, // 2 pairs coincident
283 {{{1, 1}, {2, 2}, {1, 1}, {2+N, 2}}},
284 {{{1, 1}, {1, 1+N}, {3, 3}, {3, 3}}}, // first-middle middle-last coinciden t
285 {{{1, 1}, {2+N/2, 2}, {3, 3}, {4, 4}}}, // no coincident (FIXME: N as oppos ed to N/2 failed)
286 {{{1, 1}, {3, 3}, {2, 2}, {4, 4+N}}},
287 {{{1, 1+N}, {2, 2}, {4, 4}, {3, 3}}},
288 {{{1, 1}, {3, 3}, {4, 4+N}, {2, 2}}},
289 {{{1, 1}, {4, 4}, {2, 2}, {3, 3+N}}},
290 {{{1, 1}, {4, 4}, {3, 3}, {2+M, 2}}}, // INVESTIGATE: why the epsilon is sm aller
291 {{{2, 2}, {1, 1}, {3+N, 3}, {4, 4}}},
292 {{{2, 2}, {1+N, 1}, {4, 4}, {3, 3}}},
293 {{{2, 2+N}, {3, 3}, {1, 1}, {4, 4}}},
294 {{{2+M, 2}, {3, 3}, {4, 4}, {1, 1}}}, // INVESTIGATE: why the epsilon is sm aller
295 {{{2, 2}, {4+N, 4}, {1, 1}, {3, 3}}},
296 {{{2, 2}, {4, 4}, {3, 3}, {1, 1+N}}},
297 };
298
299 const size_t negEpsilonLines_count = sizeof(negEpsilonLines) / sizeof(negEpsilon Lines[0]);
OLDNEW
« no previous file with comments | « tests/PathOpsCubicIntersectionTestData.h ('k') | tests/PathOpsCubicLineIntersectionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698