blob: 363326211502a9dd239a266b10cd2ea7bc8b810b [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 */
caryclark@google.com8d0a5242013-07-16 16:11:16 +00007#include "PathOpsTestCommon.h"
caryclark@google.com9166dcb2013-04-08 11:50:00 +00008#include "SkIntersections.h"
9#include "SkPathOpsLine.h"
10#include "Test.h"
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000011#include "TestClassDef.h"
caryclark@google.com9166dcb2013-04-08 11:50:00 +000012
13// FIXME: add tests for intersecting, non-intersecting, degenerate, coincident
14static const SkDLine tests[][2] = {
caryclark@google.com15107262013-11-08 18:00:01 +000015 {{{{30,20}, {30,50}}}, {{{24,30}, {36,30}}}},
16 {{{{323,193}, {-317,193}}}, {{{0,994}, {0,0}}}},
caryclark@google.com570863f2013-09-16 15:55:01 +000017 {{{{90,230}, {160,60}}}, {{{60,120}, {260,120}}}},
18 {{{{90,230}, {160,60}}}, {{{181.176468,120}, {135.294128,120}}}},
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +000019 {{{{181.1764678955078125f, 120}, {186.3661956787109375f, 134.7042236328125f}}},
caryclark@google.com4fdbb222013-07-23 15:27:41 +000020 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 133.7258148193359375f}}}},
caryclark@google.com07e97fc2013-07-08 17:17:02 +000021#if 0 // FIXME: these fail because one line is too short and appears quasi-coincident
22 {{{{158.000000, 926.000000}, {1108.00000, 926.000000}}},
23 {{{1108.00000, 926.000000}, {1108.00000, 925.999634}}}},
24 {{{{1108,926}, {1108,925.9996337890625}}}, {{{158,926}, {1108,926}}}},
25#endif
caryclark@google.coma5e55922013-05-07 18:51:31 +000026 {{{{192, 4}, {243, 4}}}, {{{246, 4}, {189, 4}}}},
27 {{{{246, 4}, {189, 4}}}, {{{192, 4}, {243, 4}}}},
caryclark@google.com03610322013-04-18 15:58:21 +000028 {{{{5, 0}, {0, 5}}}, {{{5, 4}, {1, 4}}}},
caryclark@google.com9166dcb2013-04-08 11:50:00 +000029 {{{{0, 0}, {1, 0}}}, {{{1, 0}, {0, 0}}}},
30 {{{{0, 0}, {0, 0}}}, {{{0, 0}, {1, 0}}}},
31 {{{{0, 1}, {0, 1}}}, {{{0, 0}, {0, 2}}}},
32 {{{{0, 0}, {1, 0}}}, {{{0, 0}, {2, 0}}}},
33 {{{{1, 1}, {2, 2}}}, {{{0, 0}, {3, 3}}}},
34 {{{{166.86950047022856, 112.69654129527828}, {166.86948801592692, 112.69655741235339}}},
35 {{{166.86960700313026, 112.6965477747386}, {166.86925794355412, 112.69656471103423}}}}
36};
37
caryclark@google.comad65a3e2013-04-15 19:13:59 +000038static const size_t tests_count = SK_ARRAY_COUNT(tests);
caryclark@google.com9166dcb2013-04-08 11:50:00 +000039
40static const SkDLine noIntersect[][2] = {
caryclark@google.com570863f2013-09-16 15:55:01 +000041 {{{{(double) (2 - 1e-6f),2}, {(double) (2 - 1e-6f),4}}},
42 {{{2,1}, {2,3}}}},
43
caryclark@google.com9166dcb2013-04-08 11:50:00 +000044 {{{{0, 0}, {1, 0}}}, {{{3, 0}, {2, 0}}}},
45 {{{{0, 0}, {0, 0}}}, {{{1, 0}, {2, 0}}}},
46 {{{{0, 1}, {0, 1}}}, {{{0, 3}, {0, 2}}}},
47 {{{{0, 0}, {1, 0}}}, {{{2, 0}, {3, 0}}}},
48 {{{{1, 1}, {2, 2}}}, {{{4, 4}, {3, 3}}}},
49};
50
caryclark@google.comad65a3e2013-04-15 19:13:59 +000051static const size_t noIntersect_count = SK_ARRAY_COUNT(noIntersect);
caryclark@google.com9166dcb2013-04-08 11:50:00 +000052
caryclark@google.com07e97fc2013-07-08 17:17:02 +000053static const SkDLine coincidentTests[][2] = {
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000054 {{{{0,482.5}, {-4.4408921e-016,682.5}}},
55 {{{0,683}, {0,482}}}},
56
57 {{{{1.77635684e-015,312}, {-1.24344979e-014,348}}},
58 {{{0,348}, {0,312}}}},
59
caryclark@google.com570863f2013-09-16 15:55:01 +000060 {{{{979.304871, 561}, {1036.69507, 291}}},
61 {{{985.681519, 531}, {982.159790, 547.568542}}}},
62
63 {{{{232.159805, 547.568542}, {235.681549, 531}}},
64 {{{286.695129,291}, {229.304855,561}}}},
65
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +000066 {{{{186.3661956787109375f, 134.7042236328125f}, {187.8782806396484375f, 133.7258148193359375f}}},
caryclark@google.com4fdbb222013-07-23 15:27:41 +000067 {{{175.8309783935546875f, 141.5211334228515625f}, {187.8782806396484375f, 133.7258148193359375f}}}},
68
caryclark@google.com07e97fc2013-07-08 17:17:02 +000069 {{{{235.681549, 531.000000}, {280.318420, 321.000000}}},
caryclark@google.com4fdbb222013-07-23 15:27:41 +000070 {{{286.695129, 291.000000}, {229.304855, 561.000000}}}},
caryclark@google.com07e97fc2013-07-08 17:17:02 +000071};
72
73static const size_t coincidentTests_count = SK_ARRAY_COUNT(coincidentTests);
74
caryclark@google.coma5e55922013-05-07 18:51:31 +000075static void check_results(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2,
76 const SkIntersections& ts) {
77 for (int i = 0; i < ts.used(); ++i) {
caryclark@google.com4fdbb222013-07-23 15:27:41 +000078 SkDPoint result1 = line1.ptAtT(ts[0][i]);
79 SkDPoint result2 = line2.ptAtT(ts[1][i]);
caryclark@google.coma5e55922013-05-07 18:51:31 +000080 if (!result1.approximatelyEqual(result2)) {
81 REPORTER_ASSERT(reporter, ts.used() != 1);
caryclark@google.com4fdbb222013-07-23 15:27:41 +000082 result2 = line2.ptAtT(ts[1][i ^ 1]);
caryclark@google.coma5e55922013-05-07 18:51:31 +000083 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2));
84 REPORTER_ASSERT(reporter, result1.approximatelyEqual(ts.pt(i).asSkPoint()));
85 }
86 }
87}
88
caryclark@google.com07e97fc2013-07-08 17:17:02 +000089static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2) {
caryclark@google.com8d0a5242013-07-16 16:11:16 +000090 SkASSERT(ValidLine(line1));
91 SkASSERT(ValidLine(line2));
caryclark@google.com07e97fc2013-07-08 17:17:02 +000092 SkIntersections i;
93 int pts = i.intersect(line1, line2);
94 REPORTER_ASSERT(reporter, pts);
95 REPORTER_ASSERT(reporter, pts == i.used());
96 check_results(reporter, line1, line2, i);
97 if (line1[0] == line1[1] || line2[0] == line2[1]) {
98 return;
99 }
100 if (line1[0].fY == line1[1].fY) {
101 double left = SkTMin(line1[0].fX, line1[1].fX);
102 double right = SkTMax(line1[0].fX, line1[1].fX);
103 SkIntersections ts;
104 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
105 check_results(reporter, line2, line1, ts);
106 }
107 if (line2[0].fY == line2[1].fY) {
108 double left = SkTMin(line2[0].fX, line2[1].fX);
109 double right = SkTMax(line2[0].fX, line2[1].fX);
110 SkIntersections ts;
111 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
112 check_results(reporter, line1, line2, ts);
113 }
114 if (line1[0].fX == line1[1].fX) {
115 double top = SkTMin(line1[0].fY, line1[1].fY);
116 double bottom = SkTMax(line1[0].fY, line1[1].fY);
117 SkIntersections ts;
118 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
119 check_results(reporter, line2, line1, ts);
120 }
121 if (line2[0].fX == line2[1].fX) {
122 double top = SkTMin(line2[0].fY, line2[1].fY);
123 double bottom = SkTMax(line2[0].fY, line2[1].fY);
124 SkIntersections ts;
125 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
126 check_results(reporter, line1, line2, ts);
127 }
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000128 reporter->bumpTestCount();
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000129}
130
131static void testOneCoincident(skiatest::Reporter* reporter, const SkDLine& line1,
132 const SkDLine& line2) {
caryclark@google.com8d0a5242013-07-16 16:11:16 +0000133 SkASSERT(ValidLine(line1));
134 SkASSERT(ValidLine(line2));
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000135 SkIntersections ts;
136 int pts = ts.intersect(line1, line2);
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000137 REPORTER_ASSERT(reporter, pts == 2);
138 REPORTER_ASSERT(reporter, pts == ts.used());
139 check_results(reporter, line1, line2, ts);
caryclark@google.com7eaa53d2013-10-02 14:49:34 +0000140 if (line1[0] == line1[1] || line2[0] == line2[1]) {
141 return;
142 }
143 if (line1[0].fY == line1[1].fY) {
144 double left = SkTMin(line1[0].fX, line1[1].fX);
145 double right = SkTMax(line1[0].fX, line1[1].fX);
146 SkIntersections ts;
147 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
148 REPORTER_ASSERT(reporter, pts == 2);
149 REPORTER_ASSERT(reporter, pts == ts.used());
150 check_results(reporter, line2, line1, ts);
151 }
152 if (line2[0].fY == line2[1].fY) {
153 double left = SkTMin(line2[0].fX, line2[1].fX);
154 double right = SkTMax(line2[0].fX, line2[1].fX);
155 SkIntersections ts;
156 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
157 REPORTER_ASSERT(reporter, pts == 2);
158 REPORTER_ASSERT(reporter, pts == ts.used());
159 check_results(reporter, line1, line2, ts);
160 }
161 if (line1[0].fX == line1[1].fX) {
162 double top = SkTMin(line1[0].fY, line1[1].fY);
163 double bottom = SkTMax(line1[0].fY, line1[1].fY);
164 SkIntersections ts;
165 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
166 REPORTER_ASSERT(reporter, pts == 2);
167 REPORTER_ASSERT(reporter, pts == ts.used());
168 check_results(reporter, line2, line1, ts);
169 }
170 if (line2[0].fX == line2[1].fX) {
171 double top = SkTMin(line2[0].fY, line2[1].fY);
172 double bottom = SkTMax(line2[0].fY, line2[1].fY);
173 SkIntersections ts;
174 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
175 REPORTER_ASSERT(reporter, pts == 2);
176 REPORTER_ASSERT(reporter, pts == ts.used());
177 check_results(reporter, line1, line2, ts);
178 }
179 reporter->bumpTestCount();
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000180}
181
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000182DEF_TEST(PathOpsLineIntersection, reporter) {
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000183 size_t index;
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000184 for (index = 0; index < coincidentTests_count; ++index) {
185 const SkDLine& line1 = coincidentTests[index][0];
186 const SkDLine& line2 = coincidentTests[index][1];
187 testOneCoincident(reporter, line1, line2);
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000188 }
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000189 for (index = 0; index < tests_count; ++index) {
190 const SkDLine& line1 = tests[index][0];
191 const SkDLine& line2 = tests[index][1];
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000192 testOne(reporter, line1, line2);
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000193 }
194 for (index = 0; index < noIntersect_count; ++index) {
195 const SkDLine& line1 = noIntersect[index][0];
196 const SkDLine& line2 = noIntersect[index][1];
197 SkIntersections ts;
198 int pts = ts.intersect(line1, line2);
skia.committer@gmail.com2b34fe02013-05-08 07:01:40 +0000199 REPORTER_ASSERT(reporter, !pts);
caryclark@google.coma5e55922013-05-07 18:51:31 +0000200 REPORTER_ASSERT(reporter, pts == ts.used());
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000201 reporter->bumpTestCount();
caryclark@google.coma5e55922013-05-07 18:51:31 +0000202 }
caryclark@google.com9166dcb2013-04-08 11:50:00 +0000203}
204
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000205DEF_TEST(PathOpsLineIntersectionOneOff, reporter) {
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000206 int index = 0;
207 SkASSERT(index < (int) tests_count);
caryclark@google.com570863f2013-09-16 15:55:01 +0000208 testOne(reporter, tests[index][0], tests[index][1]);
209 testOne(reporter, tests[1][0], tests[1][1]);
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000210}
211
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +0000212DEF_TEST(PathOpsLineIntersectionOneCoincident, reporter) {
caryclark@google.com07e97fc2013-07-08 17:17:02 +0000213 int index = 0;
214 SkASSERT(index < (int) coincidentTests_count);
215 const SkDLine& line1 = coincidentTests[index][0];
216 const SkDLine& line2 = coincidentTests[index][1];
217 testOneCoincident(reporter, line1, line2);
218}