caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 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.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 7 | #include "PathOpsTestCommon.h" |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 8 | #include "SkIntersections.h" |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 9 | #include "SkOpContour.h" |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 10 | #include "SkOpSegment.h" |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 11 | #include "SkRandom.h" |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 12 | #include "SkTSort.h" |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 13 | #include "Test.h" |
| 14 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 15 | static bool gDisableAngleTests = true; |
| 16 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 17 | static float next(float f) |
| 18 | { |
| 19 | int fBits = SkFloatAs2sCompliment(f); |
| 20 | ++fBits; |
| 21 | float fNext = Sk2sComplimentAsFloat(fBits); |
| 22 | return fNext; |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 23 | } |
| 24 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 25 | static float prev(float f) |
| 26 | { |
| 27 | int fBits = SkFloatAs2sCompliment(f); |
| 28 | --fBits; |
| 29 | float fNext = Sk2sComplimentAsFloat(fBits); |
| 30 | return fNext; |
| 31 | } |
| 32 | |
| 33 | DEF_TEST(PathOpsAngleFindCrossEpsilon, reporter) { |
| 34 | if (gDisableAngleTests) { |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 35 | return; |
| 36 | } |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 37 | SkRandom ran; |
| 38 | int maxEpsilon = 0; |
| 39 | for (int index = 0; index < 10000000; ++index) { |
| 40 | SkDLine line = {{{0, 0}, {ran.nextRangeF(0.0001f, 1000), ran.nextRangeF(0.0001f, 1000)}}}; |
| 41 | for (int inner = 0; inner < 10; ++inner) { |
| 42 | float t = ran.nextRangeF(0.0001f, 1); |
| 43 | SkDPoint dPt = line.ptAtT(t); |
| 44 | SkPoint pt = dPt.asSkPoint(); |
| 45 | float xs[3] = { prev(pt.fX), pt.fX, next(pt.fX) }; |
| 46 | float ys[3] = { prev(pt.fY), pt.fY, next(pt.fY) }; |
| 47 | for (int xIdx = 0; xIdx < 3; ++xIdx) { |
| 48 | for (int yIdx = 0; yIdx < 3; ++yIdx) { |
| 49 | SkPoint test = { xs[xIdx], ys[yIdx] }; |
| 50 | float p1 = SkDoubleToScalar(line[1].fX * test.fY); |
| 51 | float p2 = SkDoubleToScalar(line[1].fY * test.fX); |
| 52 | int p1Bits = SkFloatAs2sCompliment(p1); |
| 53 | int p2Bits = SkFloatAs2sCompliment(p2); |
bungeman | 60e0fee | 2015-08-26 05:15:46 -0700 | [diff] [blame] | 54 | int epsilon = SkTAbs(p1Bits - p2Bits); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 55 | if (maxEpsilon < epsilon) { |
| 56 | SkDebugf("line={{0, 0}, {%1.7g, %1.7g}} t=%1.7g pt={%1.7g, %1.7g}" |
| 57 | " epsilon=%d\n", |
| 58 | line[1].fX, line[1].fY, t, test.fX, test.fY, epsilon); |
| 59 | maxEpsilon = epsilon; |
| 60 | } |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 61 | } |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 67 | DEF_TEST(PathOpsAngleFindQuadEpsilon, reporter) { |
| 68 | if (gDisableAngleTests) { |
| 69 | return; |
| 70 | } |
| 71 | SkRandom ran; |
| 72 | int maxEpsilon = 0; |
| 73 | double maxAngle = 0; |
| 74 | for (int index = 0; index < 100000; ++index) { |
| 75 | SkDLine line = {{{0, 0}, {ran.nextRangeF(0.0001f, 1000), ran.nextRangeF(0.0001f, 1000)}}}; |
| 76 | float t = ran.nextRangeF(0.0001f, 1); |
| 77 | SkDPoint dPt = line.ptAtT(t); |
| 78 | float t2 = ran.nextRangeF(0.0001f, 1); |
| 79 | SkDPoint qPt = line.ptAtT(t2); |
| 80 | float t3 = ran.nextRangeF(0.0001f, 1); |
| 81 | SkDPoint qPt2 = line.ptAtT(t3); |
| 82 | qPt.fX += qPt2.fY; |
| 83 | qPt.fY -= qPt2.fX; |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 84 | QuadPts q = {{line[0], dPt, qPt}}; |
| 85 | SkDQuad quad; |
| 86 | quad.debugSet(q.fPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 87 | // binary search for maximum movement of quad[1] towards test that still has 1 intersection |
| 88 | double moveT = 0.5f; |
| 89 | double deltaT = moveT / 2; |
| 90 | SkDPoint last; |
| 91 | do { |
| 92 | last = quad[1]; |
| 93 | quad[1].fX = dPt.fX - line[1].fY * moveT; |
| 94 | quad[1].fY = dPt.fY + line[1].fX * moveT; |
| 95 | SkIntersections i; |
| 96 | i.intersect(quad, line); |
| 97 | REPORTER_ASSERT(reporter, i.used() > 0); |
| 98 | if (i.used() == 1) { |
| 99 | moveT += deltaT; |
| 100 | } else { |
| 101 | moveT -= deltaT; |
| 102 | } |
| 103 | deltaT /= 2; |
| 104 | } while (last.asSkPoint() != quad[1].asSkPoint()); |
| 105 | float p1 = SkDoubleToScalar(line[1].fX * last.fY); |
| 106 | float p2 = SkDoubleToScalar(line[1].fY * last.fX); |
| 107 | int p1Bits = SkFloatAs2sCompliment(p1); |
| 108 | int p2Bits = SkFloatAs2sCompliment(p2); |
bungeman | 60e0fee | 2015-08-26 05:15:46 -0700 | [diff] [blame] | 109 | int epsilon = SkTAbs(p1Bits - p2Bits); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 110 | if (maxEpsilon < epsilon) { |
| 111 | SkDebugf("line={{0, 0}, {%1.7g, %1.7g}} t=%1.7g/%1.7g/%1.7g moveT=%1.7g" |
| 112 | " pt={%1.7g, %1.7g} epsilon=%d\n", |
| 113 | line[1].fX, line[1].fY, t, t2, t3, moveT, last.fX, last.fY, epsilon); |
| 114 | maxEpsilon = epsilon; |
| 115 | } |
| 116 | double a1 = atan2(line[1].fY, line[1].fX); |
| 117 | double a2 = atan2(last.fY, last.fX); |
| 118 | double angle = fabs(a1 - a2); |
| 119 | if (maxAngle < angle) { |
| 120 | SkDebugf("line={{0, 0}, {%1.7g, %1.7g}} t=%1.7g/%1.7g/%1.7g moveT=%1.7g" |
| 121 | " pt={%1.7g, %1.7g} angle=%1.7g\n", |
| 122 | line[1].fX, line[1].fY, t, t2, t3, moveT, last.fX, last.fY, angle); |
| 123 | maxAngle = angle; |
| 124 | } |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 128 | static int find_slop(double x, double y, double rx, double ry) { |
| 129 | int slopBits = 0; |
| 130 | bool less1, less2; |
| 131 | double absX = fabs(x); |
| 132 | double absY = fabs(y); |
| 133 | double length = absX < absY ? absX / 2 + absY : absX + absY / 2; |
| 134 | int exponent; |
| 135 | (void) frexp(length, &exponent); |
| 136 | double epsilon = ldexp(FLT_EPSILON, exponent); |
| 137 | do { |
| 138 | // get the length as the larger plus half the smaller (both same signs) |
| 139 | // find the ulps of the length |
| 140 | // compute the offsets from there |
| 141 | double xSlop = epsilon * slopBits; |
| 142 | double ySlop = x * y < 0 ? -xSlop : xSlop; // OPTIMIZATION: use copysign / _copysign ? |
| 143 | double x1 = x - xSlop; |
| 144 | double y1 = y + ySlop; |
| 145 | double x_ry1 = x1 * ry; |
| 146 | double rx_y1 = rx * y1; |
| 147 | less1 = x_ry1 < rx_y1; |
| 148 | double x2 = x + xSlop; |
| 149 | double y2 = y - ySlop; |
| 150 | double x_ry2 = x2 * ry; |
| 151 | double rx_y2 = rx * y2; |
| 152 | less2 = x_ry2 < rx_y2; |
| 153 | } while (less1 == less2 && ++slopBits); |
| 154 | return slopBits; |
| 155 | } |
| 156 | |
| 157 | // from http://stackoverflow.com/questions/1427422/cheap-algorithm-to-find-measure-of-angle-between-vectors |
| 158 | static double diamond_angle(double y, double x) |
| 159 | { |
| 160 | if (y >= 0) |
skia.committer@gmail.com | 8f6ef40 | 2013-06-05 07:01:06 +0000 | [diff] [blame] | 161 | return (x >= 0 ? y/(x+y) : 1-x/(-x+y)); |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 162 | else |
skia.committer@gmail.com | 8f6ef40 | 2013-06-05 07:01:06 +0000 | [diff] [blame] | 163 | return (x < 0 ? 2-y/(-x-y) : 3+x/(x-y)); |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | static const double slopTests[][4] = { |
| 167 | // x y rx ry |
| 168 | {-0.058554756452593892, -0.18804585843827226, -0.018568569646021160, -0.059615294434479438}, |
| 169 | {-0.0013717412948608398, 0.0041152238845825195, -0.00045837944195925573, 0.0013753175735478074}, |
| 170 | {-2.1033774145221198, -1.4046019261273715e-008, -0.70062688352066704, -1.2706324683777995e-008}, |
| 171 | }; |
| 172 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 173 | DEF_TEST(PathOpsAngleFindSlop, reporter) { |
| 174 | if (gDisableAngleTests) { |
| 175 | return; |
| 176 | } |
| 177 | for (int index = 0; index < (int) SK_ARRAY_COUNT(slopTests); ++index) { |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 178 | const double* slopTest = slopTests[index]; |
| 179 | double x = slopTest[0]; |
| 180 | double y = slopTest[1]; |
| 181 | double rx = slopTest[2]; |
| 182 | double ry = slopTest[3]; |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 183 | SkDebugf("%s xy %d=%d\n", __FUNCTION__, index, find_slop(x, y, rx, ry)); |
| 184 | SkDebugf("%s rxy %d=%d\n", __FUNCTION__, index, find_slop(rx, ry, x, y)); |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 185 | double angle = diamond_angle(y, x); |
| 186 | double rAngle = diamond_angle(ry, rx); |
| 187 | double diff = fabs(angle - rAngle); |
| 188 | SkDebugf("%s diamond xy=%1.9g rxy=%1.9g diff=%1.9g factor=%d\n", __FUNCTION__, |
| 189 | angle, rAngle, diff, (int) (diff / FLT_EPSILON)); |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 190 | } |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | class PathOpsAngleTester { |
| 194 | public: |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 195 | static int After(SkOpAngle& lh, SkOpAngle& rh) { |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 196 | return lh.after(&rh); |
| 197 | } |
| 198 | |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 199 | static int AllOnOneSide(SkOpAngle& lh, SkOpAngle& rh) { |
| 200 | return lh.allOnOneSide(&rh); |
| 201 | } |
| 202 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 203 | static int ConvexHullOverlaps(SkOpAngle& lh, SkOpAngle& rh) { |
| 204 | return lh.convexHullOverlaps(&rh); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 205 | } |
| 206 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 207 | static int Orderable(SkOpAngle& lh, SkOpAngle& rh) { |
| 208 | return lh.orderable(&rh); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 209 | } |
| 210 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 211 | static int EndsIntersect(SkOpAngle& lh, SkOpAngle& rh) { |
| 212 | return lh.endsIntersect(&rh); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | static void SetNext(SkOpAngle& lh, SkOpAngle& rh) { |
| 216 | lh.fNext = &rh; |
| 217 | } |
| 218 | }; |
| 219 | |
| 220 | class PathOpsSegmentTester { |
| 221 | public: |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 222 | static void DebugReset(SkOpSegment* segment) { |
| 223 | segment->debugReset(); |
| 224 | } |
| 225 | }; |
| 226 | |
| 227 | struct CircleData { |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 228 | const CubicPts fPts; |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 229 | const int fPtCount; |
| 230 | SkPoint fShortPts[4]; |
| 231 | }; |
| 232 | |
| 233 | static CircleData circleDataSet[] = { |
| 234 | { {{{313.0155029296875, 207.90290832519531}, {320.05078125, 227.58743286132812}}}, 2, {} }, |
| 235 | { {{{313.0155029296875, 207.90290832519531}, {313.98246891063195, 219.33615203830394}, |
| 236 | {320.05078125, 227.58743286132812}}}, 3, {} }, |
| 237 | }; |
| 238 | |
| 239 | static const int circleDataSetSize = (int) SK_ARRAY_COUNT(circleDataSet); |
| 240 | |
| 241 | DEF_TEST(PathOpsAngleCircle, reporter) { |
Florin Malita | 14a6430 | 2017-05-24 14:53:44 -0400 | [diff] [blame] | 242 | SkSTArenaAlloc<4096> allocator; |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame] | 243 | SkOpContourHead contour; |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 244 | SkOpGlobalState state(&contour, &allocator SkDEBUGPARAMS(false) SkDEBUGPARAMS(nullptr)); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 245 | contour.init(&state, false, false); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 246 | for (int index = 0; index < circleDataSetSize; ++index) { |
| 247 | CircleData& data = circleDataSet[index]; |
| 248 | for (int idx2 = 0; idx2 < data.fPtCount; ++idx2) { |
| 249 | data.fShortPts[idx2] = data.fPts.fPts[idx2].asSkPoint(); |
| 250 | } |
| 251 | switch (data.fPtCount) { |
| 252 | case 2: |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 253 | contour.addLine(data.fShortPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 254 | break; |
| 255 | case 3: |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 256 | contour.addQuad(data.fShortPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 257 | break; |
| 258 | case 4: |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 259 | contour.addCubic(data.fShortPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 260 | break; |
| 261 | } |
| 262 | } |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 263 | SkOpSegment* first = contour.first(); |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 264 | first->debugAddAngle(0, 1); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 265 | SkOpSegment* next = first->next(); |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 266 | next->debugAddAngle(0, 1); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 267 | PathOpsAngleTester::Orderable(*first->debugLastAngle(), *next->debugLastAngle()); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | struct IntersectData { |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 271 | const CubicPts fPts; |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 272 | const int fPtCount; |
| 273 | double fTStart; |
| 274 | double fTEnd; |
| 275 | SkPoint fShortPts[4]; |
| 276 | }; |
| 277 | |
| 278 | static IntersectData intersectDataSet1[] = { |
| 279 | { {{{322.935669,231.030273}, {312.832214,220.393295}, {312.832214,203.454178}}}, 3, |
| 280 | 0.865309956, 0.154740299, {} }, |
| 281 | { {{{322.12738,233.397751}, {295.718353,159.505829}}}, 2, |
| 282 | 0.345028807, 0.0786326511, {} }, |
| 283 | { {{{322.935669,231.030273}, {312.832214,220.393295}, {312.832214,203.454178}}}, 3, |
| 284 | 0.865309956, 1, {} }, |
| 285 | { {{{322.12738,233.397751}, {295.718353,159.505829}}}, 2, |
| 286 | 0.345028807, 1, {} }, |
| 287 | }; |
| 288 | |
| 289 | static IntersectData intersectDataSet2[] = { |
| 290 | { {{{364.390686,157.898193}, {375.281769,136.674606}, {396.039917,136.674606}}}, 3, |
| 291 | 0.578520747, 1, {} }, |
| 292 | { {{{364.390686,157.898193}, {375.281769,136.674606}, {396.039917,136.674606}}}, 3, |
| 293 | 0.578520747, 0.536512973, {} }, |
| 294 | { {{{366.608826,151.196014}, {378.803101,136.674606}, {398.164948,136.674606}}}, 3, |
| 295 | 0.490456543, 1, {} }, |
| 296 | }; |
| 297 | |
| 298 | static IntersectData intersectDataSet3[] = { |
| 299 | { {{{2.000000,0.000000}, {1.33333333,0.66666667}}}, 2, 1, 0, {} }, |
| 300 | { {{{1.33333333,0.66666667}, {0.000000,2.000000}}}, 2, 0, 0.25, {} }, |
| 301 | { {{{2.000000,2.000000}, {1.33333333,0.66666667}}}, 2, 1, 0, {} }, |
| 302 | }; |
| 303 | |
| 304 | static IntersectData intersectDataSet4[] = { |
| 305 | { {{{1.3333333,0.6666667}, {0.000,2.000}}}, 2, 0.250000006, 0, {} }, |
| 306 | { {{{1.000,0.000}, {1.000,1.000}}}, 2, 1, 0, {} }, |
| 307 | { {{{1.000,1.000}, {0.000,0.000}}}, 2, 0, 1, {} }, |
| 308 | }; |
| 309 | |
| 310 | static IntersectData intersectDataSet5[] = { |
| 311 | { {{{0.000,0.000}, {1.000,0.000}, {1.000,1.000}}}, 3, 1, 0.666666667, {} }, |
| 312 | { {{{0.000,0.000}, {2.000,1.000}, {0.000,2.000}}}, 3, 0.5, 1, {} }, |
| 313 | { {{{0.000,0.000}, {2.000,1.000}, {0.000,2.000}}}, 3, 0.5, 0, {} }, |
| 314 | }; |
| 315 | |
| 316 | static IntersectData intersectDataSet6[] = { // pathops_visualizer.htm:3658 |
| 317 | { {{{0.000,1.000}, {3.000,4.000}, {1.000,0.000}, {3.000,0.000}}}, 4, 0.0925339054, 0, {} }, // pathops_visualizer.htm:3616 |
| 318 | { {{{0.000,1.000}, {0.000,3.000}, {1.000,0.000}, {4.000,3.000}}}, 4, 0.453872386, 0, {} }, // pathops_visualizer.htm:3616 |
| 319 | { {{{0.000,1.000}, {3.000,4.000}, {1.000,0.000}, {3.000,0.000}}}, 4, 0.0925339054, 0.417096368, {} }, // pathops_visualizer.htm:3616 |
| 320 | }; |
| 321 | |
| 322 | static IntersectData intersectDataSet7[] = { // pathops_visualizer.htm:3748 |
| 323 | { {{{2.000,1.000}, {0.000,1.000}}}, 2, 0.5, 0, {} }, // pathops_visualizer.htm:3706 |
| 324 | { {{{2.000,0.000}, {0.000,2.000}}}, 2, 0.5, 1, {} }, // pathops_visualizer.htm:3706 |
| 325 | { {{{0.000,1.000}, {0.000,2.000}, {2.000,0.000}, {2.000,1.000}}}, 4, 0.5, 1, {} }, // pathops_visualizer.htm:3706 |
| 326 | }; // |
| 327 | |
| 328 | static IntersectData intersectDataSet8[] = { // pathops_visualizer.htm:4194 |
| 329 | { {{{0.000,1.000}, {2.000,3.000}, {5.000,1.000}, {4.000,3.000}}}, 4, 0.311007457, 0.285714286, {} }, // pathops_visualizer.htm:4152 |
| 330 | { {{{1.000,5.000}, {3.000,4.000}, {1.000,0.000}, {3.000,2.000}}}, 4, 0.589885081, 0.999982974, {} }, // pathops_visualizer.htm:4152 |
| 331 | { {{{1.000,5.000}, {3.000,4.000}, {1.000,0.000}, {3.000,2.000}}}, 4, 0.589885081, 0.576935809, {} }, // pathops_visualizer.htm:4152 |
| 332 | }; // |
| 333 | |
| 334 | static IntersectData intersectDataSet9[] = { // pathops_visualizer.htm:4142 |
| 335 | { {{{0.000,1.000}, {2.000,3.000}, {5.000,1.000}, {4.000,3.000}}}, 4, 0.476627072, 0.311007457, {} }, // pathops_visualizer.htm:4100 |
| 336 | { {{{1.000,5.000}, {3.000,4.000}, {1.000,0.000}, {3.000,2.000}}}, 4, 0.999982974, 1, {} }, // pathops_visualizer.htm:4100 |
| 337 | { {{{0.000,1.000}, {2.000,3.000}, {5.000,1.000}, {4.000,3.000}}}, 4, 0.476627072, 1, {} }, // pathops_visualizer.htm:4100 |
| 338 | }; // |
| 339 | |
| 340 | static IntersectData intersectDataSet10[] = { // pathops_visualizer.htm:4186 |
| 341 | { {{{0.000,1.000}, {1.000,6.000}, {1.000,0.000}, {1.000,0.000}}}, 4, 0.788195121, 0.726275769, {} }, // pathops_visualizer.htm:4144 |
| 342 | { {{{0.000,1.000}, {0.000,1.000}, {1.000,0.000}, {6.000,1.000}}}, 4, 0.473378977, 1, {} }, // pathops_visualizer.htm:4144 |
| 343 | { {{{0.000,1.000}, {1.000,6.000}, {1.000,0.000}, {1.000,0.000}}}, 4, 0.788195121, 1, {} }, // pathops_visualizer.htm:4144 |
| 344 | }; // |
| 345 | |
| 346 | static IntersectData intersectDataSet11[] = { // pathops_visualizer.htm:4704 |
| 347 | { {{{979.305,561.000}, {1036.695,291.000}}}, 2, 0.888888874, 0.11111108, {} }, // pathops_visualizer.htm:4662 |
| 348 | { {{{1006.695,291.000}, {1023.264,291.000}, {1033.840,304.431}, {1030.318,321.000}}}, 4, 1, 0, {} }, // pathops_visualizer.htm:4662 |
| 349 | { {{{979.305,561.000}, {1036.695,291.000}}}, 2, 0.888888874, 1, {} }, // pathops_visualizer.htm:4662 |
| 350 | }; // |
| 351 | |
| 352 | static IntersectData intersectDataSet12[] = { // pathops_visualizer.htm:5481 |
| 353 | { {{{67.000,912.000}, {67.000,913.000}}}, 2, 1, 0, {} }, // pathops_visualizer.htm:5439 |
| 354 | { {{{67.000,913.000}, {67.000,917.389}, {67.224,921.726}, {67.662,926.000}}}, 4, 0, 1, {} }, // pathops_visualizer.htm:5439 |
| 355 | { {{{194.000,1041.000}, {123.860,1041.000}, {67.000,983.692}, {67.000,913.000}}}, 4, 1, 0, {} }, // pathops_visualizer.htm:5439 |
| 356 | }; // |
| 357 | |
| 358 | static IntersectData intersectDataSet13[] = { // pathops_visualizer.htm:5735 |
| 359 | { {{{6.000,0.000}, {0.000,4.000}}}, 2, 0.625, 0.25, {} }, // pathops_visualizer.htm:5693 |
| 360 | { {{{0.000,1.000}, {0.000,6.000}, {4.000,0.000}, {6.000,1.000}}}, 4, 0.5, 0.833333333, {} }, // pathops_visualizer.htm:5693 |
| 361 | { {{{0.000,1.000}, {0.000,6.000}, {4.000,0.000}, {6.000,1.000}}}, 4, 0.5, 0.379043969, {} }, // pathops_visualizer.htm:5693 |
| 362 | }; // |
| 363 | |
| 364 | static IntersectData intersectDataSet14[] = { // pathops_visualizer.htm:5875 |
| 365 | { {{{0.000,1.000}, {4.000,6.000}, {2.000,1.000}, {2.000,0.000}}}, 4, 0.0756502183, 0.0594570973, {} }, // pathops_visualizer.htm:5833 |
| 366 | { {{{1.000,2.000}, {0.000,2.000}, {1.000,0.000}, {6.000,4.000}}}, 4, 0.0756502184, 0, {} }, // pathops_visualizer.htm:5833 |
| 367 | { {{{0.000,1.000}, {4.000,6.000}, {2.000,1.000}, {2.000,0.000}}}, 4, 0.0756502183, 0.531917258, {} }, // pathops_visualizer.htm:5833 |
| 368 | }; // |
| 369 | |
| 370 | static IntersectData intersectDataSet15[] = { // pathops_visualizer.htm:6580 |
| 371 | { {{{490.435,879.407}, {405.593,909.436}}}, 2, 0.500554405, 1, {} }, // pathops_visualizer.htm:6538 |
| 372 | { {{{447.967,894.438}, {448.007,894.424}, {448.014,894.422}}}, 3, 0, 1, {} }, // pathops_visualizer.htm:6538 |
| 373 | { {{{490.435,879.407}, {405.593,909.436}}}, 2, 0.500554405, 0.500000273, {} }, // pathops_visualizer.htm:6538 |
skia.committer@gmail.com | a1ed7ae | 2014-04-15 03:04:18 +0000 | [diff] [blame] | 374 | }; // |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 375 | |
| 376 | static IntersectData intersectDataSet16[] = { // pathops_visualizer.htm:7419 |
| 377 | { {{{1.000,4.000}, {4.000,5.000}, {3.000,2.000}, {6.000,3.000}}}, 4, 0.5, 0, {} }, // pathops_visualizer.htm:7377 |
| 378 | { {{{2.000,3.000}, {3.000,6.000}, {4.000,1.000}, {5.000,4.000}}}, 4, 0.5, 0.112701665, {} }, // pathops_visualizer.htm:7377 |
| 379 | { {{{5.000,4.000}, {2.000,3.000}}}, 2, 0.5, 0, {} }, // pathops_visualizer.htm:7377 |
| 380 | }; // |
| 381 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 382 | // from skpi_gino_com_16 |
| 383 | static IntersectData intersectDataSet17[] = { |
| 384 | { /*seg=7*/ {{{270.974121f, 770.025879f}, {234.948273f, 734}, {184, 734}}} |
| 385 | , 3, 0.74590454, 0.547660352, {} }, |
| 386 | { /*seg=8*/ {{{185, 734}, {252.93103f, 734}, {308, 789.06897f}, {308, 857}}} |
| 387 | , 4, 0.12052623, 0, {} }, |
| 388 | { /*seg=7*/ {{{270.974121f, 770.025879f}, {234.948273f, 734}, {184, 734}}} |
| 389 | , 3, 0.74590454, 1, {} }, |
| 390 | }; |
| 391 | |
| 392 | static IntersectData intersectDataSet18[] = { |
| 393 | { /*seg=7*/ {{{270.974121f, 770.025879f}, {234.948273f, 734}, {184, 734}}} |
| 394 | , 3, 0.74590454, 1, {} }, |
| 395 | { /*seg=8*/ {{{185, 734}, {252.93103f, 734}, {308, 789.06897f}, {308, 857}}} |
| 396 | , 4, 0.12052623, 0.217351928, {} }, |
| 397 | { /*seg=7*/ {{{270.974121f, 770.025879f}, {234.948273f, 734}, {184, 734}}} |
| 398 | , 3, 0.74590454, 0.547660352, {} }, |
| 399 | }; |
| 400 | |
| 401 | static IntersectData intersectDataSet19[] = { |
| 402 | { /*seg=1*/ {{{0, 1}, {3, 5}, {2, 1}, {3, 1}}} |
| 403 | , 4, 0.135148995, 0.134791946, {} }, |
| 404 | { /*seg=3*/ {{{1, 2}, {1, 2.15061641f}, {1, 2.21049166f}, {1.01366711f, 2.21379328f}}} |
| 405 | , 4, 0.956740456, 0.894913214, {} }, |
| 406 | { /*seg=1*/ {{{0, 1}, {3, 5}, {2, 1}, {3, 1}}} |
| 407 | , 4, 0.135148995, 0.551812363, {} }, |
| 408 | }; |
| 409 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 410 | #define I(x) intersectDataSet##x |
| 411 | |
| 412 | static IntersectData* intersectDataSets[] = { |
| 413 | I(1), I(2), I(3), I(4), I(5), I(6), I(7), I(8), I(9), I(10), |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 414 | I(11), I(12), I(13), I(14), I(15), I(16), I(17), I(18), I(19), |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 415 | }; |
| 416 | |
| 417 | #undef I |
| 418 | #define I(x) (int) SK_ARRAY_COUNT(intersectDataSet##x) |
| 419 | |
| 420 | static const int intersectDataSetSizes[] = { |
| 421 | I(1), I(2), I(3), I(4), I(5), I(6), I(7), I(8), I(9), I(10), |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 422 | I(11), I(12), I(13), I(14), I(15), I(16), I(17), I(18), I(19), |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 423 | }; |
| 424 | |
| 425 | #undef I |
| 426 | |
| 427 | static const int intersectDataSetsSize = (int) SK_ARRAY_COUNT(intersectDataSetSizes); |
| 428 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 429 | struct FourPoints { |
| 430 | SkPoint pts[4]; |
| 431 | }; |
| 432 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 433 | DEF_TEST(PathOpsAngleAfter, reporter) { |
Florin Malita | 14a6430 | 2017-05-24 14:53:44 -0400 | [diff] [blame] | 434 | SkSTArenaAlloc<4096> allocator; |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame] | 435 | SkOpContourHead contour; |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 436 | SkOpGlobalState state(&contour, &allocator SkDEBUGPARAMS(false) SkDEBUGPARAMS(nullptr)); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 437 | contour.init(&state, false, false); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 438 | for (int index = intersectDataSetsSize - 1; index >= 0; --index) { |
| 439 | IntersectData* dataArray = intersectDataSets[index]; |
| 440 | const int dataSize = intersectDataSetSizes[index]; |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 441 | for (int index2 = 0; index2 < dataSize - 2; ++index2) { |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 442 | allocator.reset(); |
| 443 | contour.reset(); |
| 444 | for (int index3 = 0; index3 < 3; ++index3) { |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 445 | IntersectData& data = dataArray[index2 + index3]; |
Herb Derby | ecc364c | 2017-04-19 15:09:48 -0400 | [diff] [blame] | 446 | SkPoint* temp = (SkPoint*) allocator.make<FourPoints>(); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 447 | for (int idx2 = 0; idx2 < data.fPtCount; ++idx2) { |
| 448 | temp[idx2] = data.fPts.fPts[idx2].asSkPoint(); |
| 449 | } |
| 450 | switch (data.fPtCount) { |
| 451 | case 2: { |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 452 | contour.addLine(temp); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 453 | } break; |
| 454 | case 3: { |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 455 | contour.addQuad(temp); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 456 | } break; |
| 457 | case 4: { |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 458 | contour.addCubic(temp); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 459 | } break; |
| 460 | } |
| 461 | } |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 462 | SkOpSegment* seg1 = contour.first(); |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 463 | seg1->debugAddAngle(dataArray[index2 + 0].fTStart, dataArray[index2 + 0].fTEnd); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 464 | SkOpSegment* seg2 = seg1->next(); |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 465 | seg2->debugAddAngle(dataArray[index2 + 1].fTStart, dataArray[index2 + 1].fTEnd); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 466 | SkOpSegment* seg3 = seg2->next(); |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 467 | seg3->debugAddAngle(dataArray[index2 + 2].fTStart, dataArray[index2 + 2].fTEnd); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 468 | SkOpAngle& angle1 = *seg1->debugLastAngle(); |
| 469 | SkOpAngle& angle2 = *seg2->debugLastAngle(); |
| 470 | SkOpAngle& angle3 = *seg3->debugLastAngle(); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 471 | PathOpsAngleTester::SetNext(angle1, angle3); |
| 472 | // These data sets are seeded when the set itself fails, so likely the dataset does not |
| 473 | // match the expected result. The tests above return 1 when first added, but |
| 474 | // return 0 after the bug is fixed. |
| 475 | SkDEBUGCODE(int result =) PathOpsAngleTester::After(angle2, angle1); |
| 476 | SkASSERT(result == 0 || result == 1); |
| 477 | } |
| 478 | } |
| 479 | } |
| 480 | |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 481 | void SkOpSegment::debugAddAngle(double startT, double endT) { |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 482 | SkOpPtT* startPtT = startT == 0 ? fHead.ptT() : startT == 1 ? fTail.ptT() |
caryclark | 29b2563 | 2016-08-25 11:27:17 -0700 | [diff] [blame] | 483 | : this->addT(startT); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 484 | SkOpPtT* endPtT = endT == 0 ? fHead.ptT() : endT == 1 ? fTail.ptT() |
caryclark | 29b2563 | 2016-08-25 11:27:17 -0700 | [diff] [blame] | 485 | : this->addT(endT); |
Herb Derby | ecc364c | 2017-04-19 15:09:48 -0400 | [diff] [blame] | 486 | SkOpAngle* angle = this->globalState()->allocator()->make<SkOpAngle>(); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 487 | SkOpSpanBase* startSpan = &fHead; |
| 488 | while (startSpan->ptT() != startPtT) { |
| 489 | startSpan = startSpan->upCast()->next(); |
| 490 | } |
| 491 | SkOpSpanBase* endSpan = &fHead; |
| 492 | while (endSpan->ptT() != endPtT) { |
| 493 | endSpan = endSpan->upCast()->next(); |
| 494 | } |
| 495 | angle->set(startSpan, endSpan); |
| 496 | if (startT < endT) { |
| 497 | startSpan->upCast()->setToAngle(angle); |
| 498 | endSpan->setFromAngle(angle); |
| 499 | } else { |
| 500 | endSpan->upCast()->setToAngle(angle); |
| 501 | startSpan->setFromAngle(angle); |
| 502 | } |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 503 | } |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 504 | |
| 505 | DEF_TEST(PathOpsAngleAllOnOneSide, reporter) { |
Florin Malita | 14a6430 | 2017-05-24 14:53:44 -0400 | [diff] [blame] | 506 | SkSTArenaAlloc<4096> allocator; |
caryclark | 55888e4 | 2016-07-18 10:01:36 -0700 | [diff] [blame] | 507 | SkOpContourHead contour; |
| 508 | SkOpGlobalState state(&contour, &allocator SkDEBUGPARAMS(false) SkDEBUGPARAMS(nullptr)); |
| 509 | contour.init(&state, false, false); |
| 510 | SkPoint conicPts[3] = {{494.37100219726562f, 224.66200256347656f}, |
| 511 | {494.37360910682298f, 224.6729026561527f}, |
| 512 | {494.37600708007813f, 224.68400573730469f}}; |
| 513 | SkPoint linePts[2] = {{494.371002f, 224.662003f}, {494.375000f, 224.675995f}}; |
| 514 | for (int i = 10; i >= 0; --i) { |
| 515 | SkPoint modLinePts[2] = { linePts[0], linePts[1] }; |
| 516 | modLinePts[1].fX += i * .1f; |
| 517 | contour.addLine(modLinePts); |
| 518 | contour.addQuad(conicPts); |
| 519 | // contour.addConic(conicPts, 0.999935746f, &allocator); |
| 520 | SkOpSegment* first = contour.first(); |
| 521 | first->debugAddAngle(0, 1); |
| 522 | SkOpSegment* next = first->next(); |
| 523 | next->debugAddAngle(0, 1); |
| 524 | /* int result = */ |
| 525 | PathOpsAngleTester::AllOnOneSide(*first->debugLastAngle(), *next->debugLastAngle()); |
| 526 | // SkDebugf("i=%d result=%d\n", i , result); |
| 527 | // SkDebugf(""); |
| 528 | } |
| 529 | } |