caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +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" |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 8 | #include "SkIntersections.h" |
| 9 | #include "SkPathOpsCubic.h" |
| 10 | #include "SkPathOpsQuad.h" |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 11 | #include "SkRandom.h" |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 12 | #include "SkReduceOrder.h" |
| 13 | #include "Test.h" |
| 14 | |
caryclark | e4097e3 | 2014-06-18 07:24:19 -0700 | [diff] [blame] | 15 | static struct quadCubic { |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 16 | CubicPts cubic; |
| 17 | QuadPts quad; |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 18 | } quadCubicTests[] = { |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 19 | {{{{945.08099365234375, 747.1619873046875}, {982.5679931640625, 747.1619873046875}, {1013.6290283203125, 719.656005859375}, {1019.1910400390625, 683.72601318359375}}}, |
| 20 | {{{945, 747}, {976.0660400390625, 747}, {998.03302001953125, 725.03302001953125}}}}, |
| 21 | |
| 22 | {{{{778, 14089}, {778, 14091.208984375}, {776.20916748046875, 14093}, {774, 14093}}}, |
| 23 | {{{778, 14089}, {777.99957275390625, 14090.65625}, {776.82843017578125, 14091.828125}}}}, |
| 24 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 25 | {{{{1020.08099,672.161987}, {1020.08002,630.73999}, {986.502014,597.161987}, {945.080994,597.161987}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 26 | {{{1020,672}, {1020,640.93396}, {998.03302,618.96698}}}}, |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 27 | |
skia.committer@gmail.com | f54ad6f | 2013-11-02 07:02:02 +0000 | [diff] [blame] | 28 | {{{{778, 14089}, {778, 14091.208984375}, {776.20916748046875, 14093}, {774, 14093}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 29 | {{{778, 14089}, {777.99957275390625, 14090.65625}, {776.82843017578125, 14091.828125}}}}, |
caryclark@google.com | a2bbc6e | 2013-11-01 17:36:03 +0000 | [diff] [blame] | 30 | |
| 31 | {{{{1110, 817}, {1110.55225f, 817}, {1111, 817.447693f}, {1111, 818}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 32 | {{{1110.70715f, 817.292908f}, {1110.41406f, 817.000122f}, {1110, 817}}}}, |
caryclark@google.com | a2bbc6e | 2013-11-01 17:36:03 +0000 | [diff] [blame] | 33 | |
| 34 | {{{{1110, 817}, {1110.55225f, 817}, {1111, 817.447693f}, {1111, 818}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 35 | {{{1111, 818}, {1110.99988f, 817.585876f}, {1110.70715f, 817.292908f}}}}, |
caryclark@google.com | a2bbc6e | 2013-11-01 17:36:03 +0000 | [diff] [blame] | 36 | |
| 37 | {{{{55, 207}, {52.238574981689453, 207}, {50, 204.76142883300781}, {50, 202}}}, |
| 38 | {{{55, 207}, {52.929431915283203, 206.99949645996094}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 39 | {51.464466094970703, 205.53553771972656}}}}, |
caryclark@google.com | a2bbc6e | 2013-11-01 17:36:03 +0000 | [diff] [blame] | 40 | |
skia.committer@gmail.com | b0a0589 | 2013-10-03 07:01:37 +0000 | [diff] [blame] | 41 | {{{{49, 47}, {49, 74.614250183105469}, {26.614250183105469, 97}, {-1, 97}}}, |
caryclark@google.com | 7eaa53d | 2013-10-02 14:49:34 +0000 | [diff] [blame] | 42 | {{{-8.659739592076221e-015, 96.991401672363281}, {20.065492630004883, 96.645187377929688}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 43 | {34.355339050292969, 82.355339050292969}}}}, |
caryclark@google.com | 7eaa53d | 2013-10-02 14:49:34 +0000 | [diff] [blame] | 44 | |
skia.committer@gmail.com | 2b34fe0 | 2013-05-08 07:01:40 +0000 | [diff] [blame] | 45 | {{{{10,234}, {10,229.58172607421875}, {13.581720352172852,226}, {18,226}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 46 | {{{18,226}, {14.686291694641113,226}, {12.342399597167969,228.3424072265625}}}}, |
caryclark@google.com | a2bbc6e | 2013-11-01 17:36:03 +0000 | [diff] [blame] | 47 | |
skia.committer@gmail.com | 2b34fe0 | 2013-05-08 07:01:40 +0000 | [diff] [blame] | 48 | {{{{10,234}, {10,229.58172607421875}, {13.581720352172852,226}, {18,226}}}, |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 49 | {{{12.342399597167969,228.3424072265625}, {10,230.68629455566406}, {10,234}}}}, |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 52 | static const int quadCubicTests_count = (int) SK_ARRAY_COUNT(quadCubicTests); |
| 53 | |
| 54 | static void cubicQuadIntersection(skiatest::Reporter* reporter, int index) { |
| 55 | int iIndex = static_cast<int>(index); |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 56 | const CubicPts& c = quadCubicTests[index].cubic; |
| 57 | SkDCubic cubic; |
| 58 | cubic.debugSet(c.fPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 59 | SkASSERT(ValidCubic(cubic)); |
caryclark | a35ab3e | 2016-10-20 08:32:18 -0700 | [diff] [blame] | 60 | const QuadPts& q = quadCubicTests[index].quad; |
| 61 | SkDQuad quad; |
| 62 | quad.debugSet(q.fPts); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 63 | SkASSERT(ValidQuad(quad)); |
| 64 | SkReduceOrder reduce1; |
| 65 | SkReduceOrder reduce2; |
| 66 | int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics); |
| 67 | int order2 = reduce2.reduce(quad); |
| 68 | if (order1 != 4) { |
| 69 | SkDebugf("[%d] cubic order=%d\n", iIndex, order1); |
| 70 | REPORTER_ASSERT(reporter, 0); |
| 71 | } |
| 72 | if (order2 != 3) { |
| 73 | SkDebugf("[%d] quad order=%d\n", iIndex, order2); |
| 74 | REPORTER_ASSERT(reporter, 0); |
| 75 | } |
| 76 | SkIntersections i; |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 77 | int roots = i.intersect(cubic, quad); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 78 | for (int pt = 0; pt < roots; ++pt) { |
| 79 | double tt1 = i[0][pt]; |
| 80 | SkDPoint xy1 = cubic.ptAtT(tt1); |
| 81 | double tt2 = i[1][pt]; |
| 82 | SkDPoint xy2 = quad.ptAtT(tt2); |
| 83 | if (!xy1.approximatelyEqual(xy2)) { |
| 84 | SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n", |
| 85 | __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY); |
| 86 | } |
| 87 | REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2)); |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 88 | } |
| 89 | reporter->bumpTestCount(); |
| 90 | } |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 91 | |
tfarina@chromium.org | 78e7b4e | 2014-01-02 21:45:03 +0000 | [diff] [blame] | 92 | DEF_TEST(PathOpsCubicQuadIntersection, reporter) { |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 93 | for (int index = 0; index < quadCubicTests_count; ++index) { |
| 94 | cubicQuadIntersection(reporter, index); |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 95 | reporter->bumpTestCount(); |
| 96 | } |
| 97 | } |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 98 | |
| 99 | DEF_TEST(PathOpsCubicQuadIntersectionOneOff, reporter) { |
| 100 | cubicQuadIntersection(reporter, 0); |
| 101 | } |