blob: 974d426e6a3ba4b7b040e23d0840bf70f72623d4 [file] [log] [blame]
caryclark@google.com9166dcb2013-04-08 11:50:00 +00001/*
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 "PathOpsTestCommon.h"
9#include "SkIntersections.h"
10#include "SkPathOpsRect.h"
11#include "SkReduceOrder.h"
12#include "Test.h"
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000013#include "TestClassDef.h"
caryclark@google.com9166dcb2013-04-08 11:50:00 +000014
15const int firstCubicIntersectionTest = 9;
16
17static void standardTestCases(skiatest::Reporter* reporter) {
18 for (size_t index = firstCubicIntersectionTest; index < tests_count; ++index) {
19 int iIndex = static_cast<int>(index);
20 const SkDCubic& cubic1 = tests[index][0];
21 const SkDCubic& cubic2 = tests[index][1];
22 SkReduceOrder reduce1, reduce2;
caryclark@google.com927b7022013-11-25 14:18:21 +000023 int order1 = reduce1.reduce(cubic1, SkReduceOrder::kNo_Quadratics);
24 int order2 = reduce2.reduce(cubic2, SkReduceOrder::kNo_Quadratics);
caryclark@google.com9166dcb2013-04-08 11:50:00 +000025 const bool showSkipped = false;
26 if (order1 < 4) {
27 if (showSkipped) {
28 SkDebugf("%s [%d] cubic1 order=%d\n", __FUNCTION__, iIndex, order1);
29 }
30 continue;
31 }
32 if (order2 < 4) {
33 if (showSkipped) {
34 SkDebugf("%s [%d] cubic2 order=%d\n", __FUNCTION__, iIndex, order2);
35 }
36 continue;
37 }
38 SkIntersections tIntersections;
39 tIntersections.intersect(cubic1, cubic2);
40 if (!tIntersections.used()) {
41 if (showSkipped) {
42 SkDebugf("%s [%d] no intersection\n", __FUNCTION__, iIndex);
43 }
44 continue;
45 }
46 if (tIntersections.isCoincident(0)) {
47 if (showSkipped) {
48 SkDebugf("%s [%d] coincident\n", __FUNCTION__, iIndex);
49 }
50 continue;
51 }
52 for (int pt = 0; pt < tIntersections.used(); ++pt) {
53 double tt1 = tIntersections[0][pt];
caryclark@google.com4fdbb222013-07-23 15:27:41 +000054 SkDPoint xy1 = cubic1.ptAtT(tt1);
caryclark@google.com9166dcb2013-04-08 11:50:00 +000055 double tt2 = tIntersections[1][pt];
caryclark@google.com4fdbb222013-07-23 15:27:41 +000056 SkDPoint xy2 = cubic2.ptAtT(tt2);
caryclark@google.com9166dcb2013-04-08 11:50:00 +000057 if (!xy1.approximatelyEqual(xy2)) {
58 SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n",
59 __FUNCTION__, (int)index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
60 }
61 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
62 }
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000063 reporter->bumpTestCount();
caryclark@google.com9166dcb2013-04-08 11:50:00 +000064 }
65}
66
67static const SkDCubic testSet[] = {
68// FIXME: uncommenting these two will cause this to fail
69// this results in two curves very nearly but not exactly coincident
70#if 0
71{{{67.426548091427676, 37.993772624988935}, {23.483695892376684, 90.476863174921306},
72 {35.597065061143162, 79.872482633158796}, {75.38634169631932, 18.244890038969412}}},
73{{{67.4265481, 37.9937726}, {23.4836959, 90.4768632}, {35.5970651, 79.8724826},
74 {75.3863417, 18.24489}}},
75#endif
76
77{{{0, 0}, {0, 1}, {1, 1}, {1, 0}}},
78{{{1, 0}, {0, 0}, {0, 1}, {1, 1}}},
79
80{{{0, 1}, {4, 5}, {1, 0}, {5, 3}}},
81{{{0, 1}, {3, 5}, {1, 0}, {5, 4}}},
82
83{{{0, 1}, {1, 6}, {1, 0}, {1, 0}}},
84{{{0, 1}, {0, 1}, {1, 0}, {6, 1}}},
85
86{{{0, 1}, {3, 4}, {1, 0}, {5, 1}}},
87{{{0, 1}, {1, 5}, {1, 0}, {4, 3}}},
88
89{{{0, 1}, {1, 2}, {1, 0}, {6, 1}}},
90{{{0, 1}, {1, 6}, {1, 0}, {2, 1}}},
91
92{{{0, 1}, {0, 5}, {1, 0}, {4, 0}}},
93{{{0, 1}, {0, 4}, {1, 0}, {5, 0}}},
94
95{{{0, 1}, {3, 4}, {1, 0}, {3, 0}}},
96{{{0, 1}, {0, 3}, {1, 0}, {4, 3}}},
97
98{{{0, 0}, {1, 2}, {3, 4}, {4, 4}}},
99{{{0, 0}, {1, 2}, {3, 4}, {4, 4}}},
100{{{4, 4}, {3, 4}, {1, 2}, {0, 0}}},
101
102{{{0, 1}, {2, 3}, {1, 0}, {1, 0}}},
103{{{0, 1}, {0, 1}, {1, 0}, {3, 2}}},
104
105{{{0, 2}, {0, 1}, {1, 0}, {1, 0}}},
106{{{0, 1}, {0, 1}, {2, 0}, {1, 0}}},
107
108{{{0, 1}, {0, 2}, {1, 0}, {1, 0}}},
109{{{0, 1}, {0, 1}, {1, 0}, {2, 0}}},
110
111{{{0, 1}, {1, 6}, {1, 0}, {2, 0}}},
112{{{0, 1}, {0, 2}, {1, 0}, {6, 1}}},
113
114{{{0, 1}, {5, 6}, {1, 0}, {1, 0}}},
115{{{0, 1}, {0, 1}, {1, 0}, {6, 5}}},
116
117{{{95.837747722788592, 45.025976907939643}, {16.564570095652982, 0.72959763963222402},
118 {63.209855865319199, 68.047528419665767}, {57.640240647662544, 59.524565264361243}}},
119{{{51.593891741518817, 38.53849970667553}, {62.34752929878772, 74.924924725166022},
120 {74.810149322641152, 34.17966562983564}, {29.368398119401373, 94.66719277886078}}},
121
122{{{39.765160968417838, 33.060396198677083}, {5.1922921581157908, 66.854301452103215},
123 {31.619281802149157, 25.269248720849514}, {81.541621071073038, 70.025341524754353}}},
124{{{46.078911165743556, 48.259962651999651}, {20.24450549867214, 49.403916182650214},
125 {0.26325131778756683, 24.46489805563581}, {15.915006546264051, 83.515023059917155}}},
126
127{{{65.454505973241524, 93.881892270353575}, {45.867360264932437, 92.723972719499827},
128 {2.1464054482739447, 74.636369140183717}, {33.774068594804994, 40.770872887582925}}},
129{{{72.963387832494163, 95.659300729473728}, {11.809496633619768, 82.209921247423594},
130 {13.456139067865974, 57.329313623406605}, {36.060621606214262, 70.867335643091849}}},
131
132{{{32.484981432782945, 75.082940782924624}, {42.467313093350882, 48.131159948246157},
133 {3.5963115764764657, 43.208665839959245}, {79.442476890721579, 89.709102357602262}}},
134{{{18.98573861410177, 93.308887208490106}, {40.405250173250792, 91.039661826118675},
135 {8.0467721950480584, 42.100282172719147}, {40.883324221187891, 26.030185504830527}}},
136
137{{{7.5374809128872498, 82.441702896003477}, {22.444346930107265, 22.138854312775123},
138 {66.76091829629658, 50.753805856571446}, {78.193478508942519, 97.7932997968948}}},
139{{{97.700573130371311, 53.53260215070685}, {87.72443481149358, 84.575876772671876},
140 {19.215031396232092, 47.032676472809484}, {11.989686410869325, 10.659507480757082}}},
141
142{{{26.192053931854691, 9.8504326817814416}, {10.174241480498686, 98.476562741434464},
143 {21.177712558385782, 33.814968789841501}, {75.329030899018534, 55.02231980442177}}},
144{{{56.222082700683771, 24.54395039218662}, {95.589995289030483, 81.050822735322086},
145 {28.180450866082897, 28.837706255185282}, {60.128952916771617, 87.311672180570511}}},
146
147{{{42.449716172390481, 52.379709366885805}, {27.896043159019225, 48.797373636065686},
148 {92.770268299044233, 89.899302036454571}, {12.102066544863426, 99.43241951960718}}},
149{{{45.77532924980639, 45.958701495993274}, {37.458701356062065, 68.393691335056758},
150 {37.569326692060258, 27.673713456687381}, {60.674866037757539, 62.47349659096146}}},
151
152{{{67.426548091427676, 37.993772624988935}, {23.483695892376684, 90.476863174921306},
153 {35.597065061143162, 79.872482633158796}, {75.38634169631932, 18.244890038969412}}},
154{{{61.336508189019057, 82.693132843213675}, {44.639380902349664, 54.074825790745592},
155 {16.815615499771951, 20.049704667203923}, {41.866884958868326, 56.735503699973002}}},
156
157{{{18.1312339, 31.6473732}, {95.5711034, 63.5350219}, {92.3283165, 62.0158945},
158 {18.5656052, 32.1268808}}},
159{{{97.402018, 35.7169972}, {33.1127443, 25.8935163}, {1.13970027, 54.9424981},
160 {56.4860195, 60.529264}}},
161};
162
caryclark@google.comad65a3e2013-04-15 19:13:59 +0000163const size_t testSetCount = SK_ARRAY_COUNT(testSet);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000164
165static const SkDCubic newTestSet[] = {
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +0000166{{{275,532}, {277.209137,532}, {279,530.209106}, {279,528}}},
167{{{278,529}, {278,530.65686}, {276.65686,532}, {275,532}}},
168
skia.committer@gmail.comb0a05892013-10-03 07:01:37 +0000169#if 0 // FIXME: asserts coincidence, not working yet
170{{{195, 785}, {124.30755615234375, 785}, {67, 841.85986328125}, {67, 912}}},
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000171{{{67, 913}, {67, 842.30755615234375}, {123.85984039306641, 785}, {194, 785}}},
172#endif
173
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +0000174{{{149,710.001465}, {149.000809,712.209961}, {150.791367,714}, {153,714}}},
175{{{154,715}, {151.238571,715}, {149,712.761414}, {149,710}}},
176
177{{{1,2}, {1,2}, {2,0}, {6,0}}},
178{{{0,2}, {0,6}, {2,1}, {2,1}}},
179
180{{{0,1}, {2,3}, {5,1}, {4,3}}},
181{{{1,5}, {3,4}, {1,0}, {3,2}}},
182
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000183{{{399,657}, {399,661.970581}, {403.029449,666}, {408,666}}},
184{{{406,666}, {402.686279,666}, {400,663.313721}, {400,660}}},
185
186{{{0,5}, {3,5}, {3,0}, {3,2}}},
187{{{0,3}, {2,3}, {5,0}, {5,3}}},
188
caryclark@google.com570863f2013-09-16 15:55:01 +0000189{{{132, 11419}, {130.89543151855469, 11419}, {130, 11418.1044921875}, {130, 11417}}},
190
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +0000191{{{3, 4}, {1, 5}, {4, 3}, {6, 4}}},
192{{{3, 4}, {4, 6}, {4, 3}, {5, 1}}},
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000193
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +0000194{{{130.04275512695312, 11417.413085937500 },
195 {130.23312377929687, 11418.319335937500 },
196 {131.03707885742187, 11419.000000000000 },
197 {132.00000000000000, 11419.000000000000 }}},
198
199{{{132.00000000000000, 11419.000000000000 },
200 {130.89543151855469, 11419.000000000000 },
201 {130.00000000000000, 11418.104492187500 },
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000202 {130.00000000000000, 11417.000000000000 }}},
203
robertphillips@google.com8dcea7d2013-07-15 15:38:55 +0000204{{{1.0516976506771041, 2.9684399028541346 },
205 {1.0604363140895228, 2.9633503074444141 },
206 {1.0692548215065762, 2.9580354426587459 },
207 {1.0781560339512140, 2.9525043684031349 }}},
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000208
robertphillips@google.com8dcea7d2013-07-15 15:38:55 +0000209{{{1.0523038101345104, 2.9523755204833737 },
210 {1.0607035288264237, 2.9580853881628375 },
211 {1.0690530472271964, 2.9633896794787749 },
212 {1.0773566568712512, 2.9682969775000219 }}},
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000213
robertphillips@google.com8dcea7d2013-07-15 15:38:55 +0000214{{{1.0386522625066592, 2.9759024812329078 },
215 {1.0559713690392631, 2.9661782500838885 },
216 {1.0736041309019990, 2.9555348259177858 },
217 {1.0915734362784633, 2.9440446879826569 }}},
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000218
robertphillips@google.com8dcea7d2013-07-15 15:38:55 +0000219{{{1.0396670794879301, 2.9435062123457261 },
220 {1.0565690546812769, 2.9557413250983462 },
221 {1.0732616463413533, 2.9663369676594282 },
222 {1.0897791867435489, 2.9753618045797472 }}},
223
224{{{0.8685656183311091, 3.0409266475785208 },
225 {0.99189542936395292, 3.0212163698184424 },
226 {1.1302108367493320, 2.9265646471747306 },
227 {1.2952305904872474, 2.7940808546473788 }}},
228
229{{{0.85437872843682727, 2.7536036928549055 },
230 {1.0045584590592620, 2.9493041024831705 },
231 {1.1336998329885613, 3.0248027987251747 },
232 {1.2593809752247314, 3.0152560315809107 }}},
233
234{{{0, 1}, {1, 6}, {1, 0}, {6, 2}}},
235{{{0, 1}, {2, 6}, {1, 0}, {6, 1}}},
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000236
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000237{{{134,11414}, {131.990234375,11414}, {130.32666015625,11415.482421875}, {130.04275512695312,11417.4130859375}}},
238{{{132,11419}, {130.89543151855469,11419}, {130,11418.1044921875}, {130,11417}}},
239
240{{{132,11419}, {130.89543151855469,11419}, {130,11418.1044921875}, {130,11417}}},
241{{{130.04275512695312,11417.4130859375}, {130.23312377929687,11418.3193359375}, {131.03707885742187,11419}, {132,11419}}},
242
caryclark@google.coma5e55922013-05-07 18:51:31 +0000243{{{0, 1}, {2, 3}, {5, 1}, {4, 3}}},
244{{{1, 5}, {3, 4}, {1, 0}, {3, 2}}},
245
caryclark@google.comb3f09212013-04-17 15:49:16 +0000246{{{3, 5}, {1, 6}, {5, 0}, {3, 1}}},
247{{{0, 5}, {1, 3}, {5, 3}, {6, 1}}},
248
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000249{{{0, 1}, {1, 5}, {1, 0}, {1, 0}}},
250{{{0, 1}, {0, 1}, {1, 0}, {5, 1}}},
251
252{{{1, 3}, {5, 6}, {5, 3}, {5, 4}}},
253{{{3, 5}, {4, 5}, {3, 1}, {6, 5}}},
254
255{{{0, 5}, {0, 5}, {5, 4}, {6, 4}}},
256{{{4, 5}, {4, 6}, {5, 0}, {5, 0}}},
257
258{{{0, 4}, {1, 3}, {5, 4}, {4, 2}}},
259{{{4, 5}, {2, 4}, {4, 0}, {3, 1}}},
260
261{{{0, 2}, {1, 5}, {3, 2}, {4, 1}}},
262{{{2, 3}, {1, 4}, {2, 0}, {5, 1}}},
263
264{{{0, 2}, {2, 3}, {5, 1}, {3, 2}}},
265{{{1, 5}, {2, 3}, {2, 0}, {3, 2}}},
266
267{{{2, 6}, {4, 5}, {1, 0}, {6, 1}}},
268{{{0, 1}, {1, 6}, {6, 2}, {5, 4}}},
269
270{{{0, 1}, {1, 2}, {6, 5}, {5, 4}}},
271{{{5, 6}, {4, 5}, {1, 0}, {2, 1}}},
272
273{{{2.5119999999999996, 1.5710000000000002}, {2.6399999999999983, 1.6599999999999997},
274 {2.8000000000000007, 1.8000000000000003}, {3, 2}}},
275{{{2.4181876227114887, 1.9849772580462195}, {2.8269904869227211, 2.009330650246834},
276 {3.2004679292461624, 1.9942047174679169}, {3.4986199496818058, 2.0035994597094731}}},
277
278{{{2, 3}, {1, 4}, {1, 0}, {6, 0}}},
279{{{0, 1}, {0, 6}, {3, 2}, {4, 1}}},
280
281{{{0, 2}, {1, 5}, {1, 0}, {6, 1}}},
282{{{0, 1}, {1, 6}, {2, 0}, {5, 1}}},
283
284{{{0, 1}, {1, 5}, {2, 1}, {4, 0}}},
285{{{1, 2}, {0, 4}, {1, 0}, {5, 1}}},
286
287{{{0, 1}, {3, 5}, {2, 1}, {3, 1}}},
288{{{1, 2}, {1, 3}, {1, 0}, {5, 3}}},
289
290{{{0, 1}, {2, 5}, {6, 0}, {5, 3}}},
291{{{0, 6}, {3, 5}, {1, 0}, {5, 2}}},
292
293{{{0, 1}, {3, 6}, {1, 0}, {5, 2}}},
294{{{0, 1}, {2, 5}, {1, 0}, {6, 3}}},
295
296{{{1, 2}, {5, 6}, {1, 0}, {1, 0}}},
297{{{0, 1}, {0, 1}, {2, 1}, {6, 5}}},
298
299{{{0, 6}, {1, 2}, {1, 0}, {1, 0}}},
300{{{0, 1}, {0, 1}, {6, 0}, {2, 1}}},
301
302{{{0, 2}, {0, 1}, {3, 0}, {1, 0}}},
303{{{0, 3}, {0, 1}, {2, 0}, {1, 0}}},
304};
305
caryclark@google.comad65a3e2013-04-15 19:13:59 +0000306const size_t newTestSetCount = SK_ARRAY_COUNT(newTestSet);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000307
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000308static void oneOff(skiatest::Reporter* reporter, const SkDCubic& cubic1, const SkDCubic& cubic2,
309 bool coin) {
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000310 SkASSERT(ValidCubic(cubic1));
311 SkASSERT(ValidCubic(cubic2));
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000312#if ONE_OFF_DEBUG
313 SkDebugf("computed quadratics given\n");
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000314 SkDebugf(" {{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n",
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000315 cubic1[0].fX, cubic1[0].fY, cubic1[1].fX, cubic1[1].fY,
316 cubic1[2].fX, cubic1[2].fY, cubic1[3].fX, cubic1[3].fY);
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000317 SkDebugf(" {{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n",
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000318 cubic2[0].fX, cubic2[0].fY, cubic2[1].fX, cubic2[1].fY,
319 cubic2[2].fX, cubic2[2].fY, cubic2[3].fX, cubic2[3].fY);
320#endif
caryclark@google.comd892bd82013-06-17 14:10:36 +0000321 SkTArray<SkDQuad, true> quads1;
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000322 CubicToQuads(cubic1, cubic1.calcPrecision(), quads1);
323#if ONE_OFF_DEBUG
324 SkDebugf("computed quadratics set 1\n");
325 for (int index = 0; index < quads1.count(); ++index) {
326 const SkDQuad& q = quads1[index];
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000327 SkDebugf(" {{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].fX, q[0].fY,
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000328 q[1].fX, q[1].fY, q[2].fX, q[2].fY);
329 }
330#endif
caryclark@google.comd892bd82013-06-17 14:10:36 +0000331 SkTArray<SkDQuad, true> quads2;
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000332 CubicToQuads(cubic2, cubic2.calcPrecision(), quads2);
333#if ONE_OFF_DEBUG
334 SkDebugf("computed quadratics set 2\n");
335 for (int index = 0; index < quads2.count(); ++index) {
336 const SkDQuad& q = quads2[index];
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000337 SkDebugf(" {{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].fX, q[0].fY,
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000338 q[1].fX, q[1].fY, q[2].fX, q[2].fY);
339 }
340#endif
341 SkIntersections intersections;
342 intersections.intersect(cubic1, cubic2);
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000343 REPORTER_ASSERT(reporter, !coin || intersections.used() == 2);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000344 double tt1, tt2;
345 SkDPoint xy1, xy2;
346 for (int pt3 = 0; pt3 < intersections.used(); ++pt3) {
347 tt1 = intersections[0][pt3];
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000348 xy1 = cubic1.ptAtT(tt1);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000349 tt2 = intersections[1][pt3];
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000350 xy2 = cubic2.ptAtT(tt2);
caryclark@google.com5ec2b1e2013-07-15 20:50:24 +0000351 const SkDPoint& iPt = intersections.pt(pt3);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000352#if ONE_OFF_DEBUG
353 SkDebugf("%s t1=%1.9g (%1.9g, %1.9g) (%1.9g, %1.9g) (%1.9g, %1.9g) t2=%1.9g\n",
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000354 __FUNCTION__, tt1, xy1.fX, xy1.fY, iPt.fX,
355 iPt.fY, xy2.fX, xy2.fY, tt2);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000356#endif
caryclark@google.comcffbcc32013-06-04 17:59:42 +0000357 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(iPt));
358 REPORTER_ASSERT(reporter, xy2.approximatelyEqual(iPt));
359 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000360 }
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000361 reporter->bumpTestCount();
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000362}
363
364static void oneOff(skiatest::Reporter* reporter, int outer, int inner) {
365 const SkDCubic& cubic1 = testSet[outer];
366 const SkDCubic& cubic2 = testSet[inner];
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000367 oneOff(reporter, cubic1, cubic2, false);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000368}
369
370static void newOneOff(skiatest::Reporter* reporter, int outer, int inner) {
371 const SkDCubic& cubic1 = newTestSet[outer];
372 const SkDCubic& cubic2 = newTestSet[inner];
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000373 oneOff(reporter, cubic1, cubic2, false);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000374}
375
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000376static void oneOffTests(skiatest::Reporter* reporter) {
377 for (size_t outer = 0; outer < testSetCount - 1; ++outer) {
378 for (size_t inner = outer + 1; inner < testSetCount; ++inner) {
379 oneOff(reporter, outer, inner);
380 }
381 }
382 for (size_t outer = 0; outer < newTestSetCount - 1; ++outer) {
383 for (size_t inner = outer + 1; inner < newTestSetCount; ++inner) {
caryclark@google.com5ec2b1e2013-07-15 20:50:24 +0000384 newOneOff(reporter, outer, inner);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000385 }
386 }
387}
388
389#define DEBUG_CRASH 0
390
391static void CubicIntersection_RandTest(skiatest::Reporter* reporter) {
392 srand(0);
393 const int tests = 10000000;
caryclark@google.comdb60de72013-04-11 12:33:23 +0000394#if !defined(SK_BUILD_FOR_WIN) && !defined(SK_BUILD_FOR_ANDROID)
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000395 unsigned seed = 0;
396#endif
397 for (int test = 0; test < tests; ++test) {
398 SkDCubic cubic1, cubic2;
399 for (int i = 0; i < 4; ++i) {
400 cubic1[i].fX = static_cast<double>(SK_RAND(seed)) / RAND_MAX * 100;
401 cubic1[i].fY = static_cast<double>(SK_RAND(seed)) / RAND_MAX * 100;
402 cubic2[i].fX = static_cast<double>(SK_RAND(seed)) / RAND_MAX * 100;
403 cubic2[i].fY = static_cast<double>(SK_RAND(seed)) / RAND_MAX * 100;
404 }
405 #if DEBUG_CRASH
406 char str[1024];
407 snprintf(str, sizeof(str),
408 "{{{%1.9g, %1.9g}, {%1.9g, %1.9g}, {%1.9g, %1.9g}, {%1.9g, %1.9g}}},\n"
409 "{{{%1.9g, %1.9g}, {%1.9g, %1.9g}, {%1.9g, %1.9g}, {%1.9g, %1.9g}}},\n",
410 cubic1[0].fX, cubic1[0].fY, cubic1[1].fX, cubic1[1].fY, cubic1[2].fX, cubic1[2].fY,
411 cubic1[3].fX, cubic1[3].fY,
412 cubic2[0].fX, cubic2[0].fY, cubic2[1].fX, cubic2[1].fY, cubic2[2].fX, cubic2[2].fY,
413 cubic2[3].fX, cubic2[3].fY);
414 #endif
415 SkDRect rect1, rect2;
416 rect1.setBounds(cubic1);
417 rect2.setBounds(cubic2);
418 bool boundsIntersect = rect1.fLeft <= rect2.fRight && rect2.fLeft <= rect2.fRight
419 && rect1.fTop <= rect2.fBottom && rect2.fTop <= rect1.fBottom;
420 if (test == -1) {
421 SkDebugf("ready...\n");
422 }
423 SkIntersections intersections2;
424 int newIntersects = intersections2.intersect(cubic1, cubic2);
425 if (!boundsIntersect && newIntersects) {
426 #if DEBUG_CRASH
427 SkDebugf("%s %d unexpected intersection boundsIntersect=%d "
428 " newIntersects=%d\n%s %s\n", __FUNCTION__, test, boundsIntersect,
429 newIntersects, __FUNCTION__, str);
430 #endif
431 REPORTER_ASSERT(reporter, 0);
432 }
433 for (int pt = 0; pt < intersections2.used(); ++pt) {
434 double tt1 = intersections2[0][pt];
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000435 SkDPoint xy1 = cubic1.ptAtT(tt1);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000436 double tt2 = intersections2[1][pt];
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000437 SkDPoint xy2 = cubic2.ptAtT(tt2);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000438 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
439 }
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000440 reporter->bumpTestCount();
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000441 }
442}
443
444static void intersectionFinder(int index0, int index1, double t1Seed, double t2Seed,
445 double t1Step, double t2Step) {
446 const SkDCubic& cubic1 = newTestSet[index0];
447 const SkDCubic& cubic2 = newTestSet[index1];
448 SkDPoint t1[3], t2[3];
449 bool toggle = true;
450 do {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000451 t1[0] = cubic1.ptAtT(t1Seed - t1Step);
452 t1[1] = cubic1.ptAtT(t1Seed);
453 t1[2] = cubic1.ptAtT(t1Seed + t1Step);
454 t2[0] = cubic2.ptAtT(t2Seed - t2Step);
455 t2[1] = cubic2.ptAtT(t2Seed);
456 t2[2] = cubic2.ptAtT(t2Seed + t2Step);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000457 double dist[3][3];
458 dist[1][1] = t1[1].distance(t2[1]);
459 int best_i = 1, best_j = 1;
460 for (int i = 0; i < 3; ++i) {
461 for (int j = 0; j < 3; ++j) {
462 if (i == 1 && j == 1) {
463 continue;
464 }
465 dist[i][j] = t1[i].distance(t2[j]);
466 if (dist[best_i][best_j] > dist[i][j]) {
467 best_i = i;
468 best_j = j;
469 }
470 }
471 }
472 if (best_i == 0) {
473 t1Seed -= t1Step;
474 } else if (best_i == 2) {
475 t1Seed += t1Step;
476 }
477 if (best_j == 0) {
478 t2Seed -= t2Step;
479 } else if (best_j == 2) {
480 t2Seed += t2Step;
481 }
482 if (best_i == 1 && best_j == 1) {
483 if ((toggle ^= true)) {
484 t1Step /= 2;
485 } else {
486 t2Step /= 2;
487 }
488 }
489 } while (!t1[1].approximatelyEqual(t2[1]));
490 t1Step = t2Step = 0.1;
491 double t10 = t1Seed - t1Step * 2;
492 double t12 = t1Seed + t1Step * 2;
493 double t20 = t2Seed - t2Step * 2;
494 double t22 = t2Seed + t2Step * 2;
495 SkDPoint test;
496 while (!approximately_zero(t1Step)) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000497 test = cubic1.ptAtT(t10);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000498 t10 += t1[1].approximatelyEqual(test) ? -t1Step : t1Step;
499 t1Step /= 2;
500 }
501 t1Step = 0.1;
502 while (!approximately_zero(t1Step)) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000503 test = cubic1.ptAtT(t12);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000504 t12 -= t1[1].approximatelyEqual(test) ? -t1Step : t1Step;
505 t1Step /= 2;
506 }
507 while (!approximately_zero(t2Step)) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000508 test = cubic2.ptAtT(t20);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000509 t20 += t2[1].approximatelyEqual(test) ? -t2Step : t2Step;
510 t2Step /= 2;
511 }
512 t2Step = 0.1;
513 while (!approximately_zero(t2Step)) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000514 test = cubic2.ptAtT(t22);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000515 t22 -= t2[1].approximatelyEqual(test) ? -t2Step : t2Step;
516 t2Step /= 2;
517 }
518#if ONE_OFF_DEBUG
519 SkDebugf("%s t1=(%1.9g<%1.9g<%1.9g) t2=(%1.9g<%1.9g<%1.9g)\n", __FUNCTION__,
520 t10, t1Seed, t12, t20, t2Seed, t22);
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000521 SkDPoint p10 = cubic1.ptAtT(t10);
522 SkDPoint p1Seed = cubic1.ptAtT(t1Seed);
523 SkDPoint p12 = cubic1.ptAtT(t12);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000524 SkDebugf("%s p1=(%1.9g,%1.9g)<(%1.9g,%1.9g)<(%1.9g,%1.9g)\n", __FUNCTION__,
525 p10.fX, p10.fY, p1Seed.fX, p1Seed.fY, p12.fX, p12.fY);
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000526 SkDPoint p20 = cubic2.ptAtT(t20);
527 SkDPoint p2Seed = cubic2.ptAtT(t2Seed);
528 SkDPoint p22 = cubic2.ptAtT(t22);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000529 SkDebugf("%s p2=(%1.9g,%1.9g)<(%1.9g,%1.9g)<(%1.9g,%1.9g)\n", __FUNCTION__,
530 p20.fX, p20.fY, p2Seed.fX, p2Seed.fY, p22.fX, p22.fY);
531#endif
532}
533
534static void CubicIntersection_IntersectionFinder() {
535// double t1Seed = 0.87;
536// double t2Seed = 0.87;
537 double t1Step = 0.000001;
538 double t2Step = 0.000001;
539 intersectionFinder(0, 1, 0.855895664, 0.864850875, t1Step, t2Step);
540 intersectionFinder(0, 1, 0.865207906, 0.865207887, t1Step, t2Step);
541 intersectionFinder(0, 1, 0.865213351, 0.865208087, t1Step, t2Step);
542}
543
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000544static const SkDCubic selfSet[] = {
545 {{{2, 3}, {0, 4}, {3, 2}, {5, 3}}},
546 {{{3, 6}, {2, 3}, {4, 0}, {3, 2}}},
547 {{{0, 2}, {2, 3}, {5, 1}, {3, 2}}},
548 {{{0, 2}, {3, 5}, {5, 0}, {4, 2}}},
549 {{{3.34, 8.98}, {1.95, 10.27}, {3.76, 7.65}, {4.96, 10.64}}},
550 {{{3.13, 2.74}, {1.08, 4.62}, {3.71, 0.94}, {2.01, 3.81}}},
551 {{{6.71, 3.14}, {7.99, 2.75}, {8.27, 1.96}, {6.35, 3.57}}},
552 {{{12.81, 7.27}, {7.22, 6.98}, {12.49, 8.97}, {11.42, 6.18}}},
553};
554size_t selfSetCount = SK_ARRAY_COUNT(selfSet);
555
556static void selfOneOff(skiatest::Reporter* reporter, int index) {
557 const SkDCubic& cubic = selfSet[index];
558#if ONE_OFF_DEBUG
559 int idx2;
560 double max[3];
561 int ts = cubic.findMaxCurvature(max);
562 for (idx2 = 0; idx2 < ts; ++idx2) {
563 SkDebugf("%s max[%d]=%1.9g (%1.9g, %1.9g)\n", __FUNCTION__, idx2,
564 max[idx2], cubic.ptAtT(max[idx2]).fX, cubic.ptAtT(max[idx2]).fY);
565 }
566 SkTArray<double, true> ts1;
567 SkTArray<SkDQuad, true> quads1;
568 cubic.toQuadraticTs(cubic.calcPrecision(), &ts1);
569 for (idx2 = 0; idx2 < ts1.count(); ++idx2) {
570 SkDebugf("%s t[%d]=%1.9g\n", __FUNCTION__, idx2, ts1[idx2]);
571 }
572 CubicToQuads(cubic, cubic.calcPrecision(), quads1);
573 for (idx2 = 0; idx2 < quads1.count(); ++idx2) {
574 const SkDQuad& q = quads1[idx2];
575 SkDebugf(" {{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}}},\n",
576 q[0].fX, q[0].fY, q[1].fX, q[1].fY, q[2].fX, q[2].fY);
577 }
578 SkDebugf("\n");
579#endif
580 SkIntersections i;
581 int result = i.intersect(cubic);
582 REPORTER_ASSERT(reporter, result == 1);
583 REPORTER_ASSERT(reporter, i.used() == 1);
584 REPORTER_ASSERT(reporter, !approximately_equal(i[0][0], i[1][0]));
585 SkDPoint pt1 = cubic.ptAtT(i[0][0]);
586 SkDPoint pt2 = cubic.ptAtT(i[1][0]);
587 REPORTER_ASSERT(reporter, pt1.approximatelyEqual(pt2));
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000588 reporter->bumpTestCount();
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000589}
590
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000591static void cubicIntersectionSelfTest(skiatest::Reporter* reporter) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000592 size_t firstFail = 0;
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000593 for (size_t index = firstFail; index < selfSetCount; ++index) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000594 selfOneOff(reporter, index);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000595 }
596}
597
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000598static const SkDCubic coinSet[] = {
skia.committer@gmail.comb0a05892013-10-03 07:01:37 +0000599 {{{317, 711}, {322.52285766601562, 711}, {327, 715.4771728515625}, {327, 721}}},
600 {{{324.07107543945312, 713.928955078125}, {324.4051513671875, 714.26300048828125},
601 {324.71566772460937, 714.62060546875}, {325, 714.9990234375}}},
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000602
603 {{{2, 3}, {0, 4}, {3, 2}, {5, 3}}},
604 {{{2, 3}, {0, 4}, {3, 2}, {5, 3}}},
605};
606
607size_t coinSetCount = SK_ARRAY_COUNT(coinSet);
608
609static void coinOneOff(skiatest::Reporter* reporter, int index) {
610 const SkDCubic& cubic1 = coinSet[index];
611 const SkDCubic& cubic2 = coinSet[index + 1];
612 oneOff(reporter, cubic1, cubic2, true);
613}
614
615static void cubicIntersectionCoinTest(skiatest::Reporter* reporter) {
616 size_t firstFail = 0;
617 for (size_t index = firstFail; index < coinSetCount; index += 2) {
618 coinOneOff(reporter, index);
619 }
620}
621
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000622DEF_TEST(PathOpsCubicCoinOneOff, reporter) {
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000623 coinOneOff(reporter, 0);
624}
625
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000626DEF_TEST(PathOpsCubicIntersectionOneOff, reporter) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000627 newOneOff(reporter, 0, 1);
628}
629
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000630DEF_TEST(PathOpsCubicSelfOneOff, reporter) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +0000631 selfOneOff(reporter, 0);
caryclark@google.comfa2aeee2013-07-15 13:29:13 +0000632}
633
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000634DEF_TEST(PathOpsCubicIntersection, reporter) {
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000635 oneOffTests(reporter);
636 cubicIntersectionSelfTest(reporter);
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000637 cubicIntersectionCoinTest(reporter);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000638 standardTestCases(reporter);
639 if (false) CubicIntersection_IntersectionFinder();
640 if (false) CubicIntersection_RandTest(reporter);
641}