blob: d1ce05b638122c4eff9eb9e32c6623b5bb3f5593 [file] [log] [blame]
caryclark@google.coma5e55922013-05-07 18:51:31 +00001/*
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.com8d0a5242013-07-16 16:11:16 +00007#include "PathOpsTestCommon.h"
caryclark@google.coma5e55922013-05-07 18:51:31 +00008#include "SkIntersections.h"
9#include "SkPathOpsCubic.h"
10#include "SkPathOpsQuad.h"
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000011#include "SkRandom.h"
caryclark@google.coma5e55922013-05-07 18:51:31 +000012#include "SkReduceOrder.h"
13#include "Test.h"
14
caryclarke4097e32014-06-18 07:24:19 -070015static struct quadCubic {
caryclark@google.coma5e55922013-05-07 18:51:31 +000016 SkDCubic cubic;
17 SkDQuad quad;
caryclark@google.coma5e55922013-05-07 18:51:31 +000018} quadCubicTests[] = {
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000019 {{{{1020.08099,672.161987}, {1020.08002,630.73999}, {986.502014,597.161987}, {945.080994,597.161987}}},
caryclark54359292015-03-26 07:52:43 -070020 {{{1020,672}, {1020,640.93396}, {998.03302,618.96698}}}},
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000021
skia.committer@gmail.comf54ad6f2013-11-02 07:02:02 +000022 {{{{778, 14089}, {778, 14091.208984375}, {776.20916748046875, 14093}, {774, 14093}}},
caryclark54359292015-03-26 07:52:43 -070023 {{{778, 14089}, {777.99957275390625, 14090.65625}, {776.82843017578125, 14091.828125}}}},
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000024
25 {{{{1110, 817}, {1110.55225f, 817}, {1111, 817.447693f}, {1111, 818}}},
caryclark54359292015-03-26 07:52:43 -070026 {{{1110.70715f, 817.292908f}, {1110.41406f, 817.000122f}, {1110, 817}}}},
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000027
28 {{{{1110, 817}, {1110.55225f, 817}, {1111, 817.447693f}, {1111, 818}}},
caryclark54359292015-03-26 07:52:43 -070029 {{{1111, 818}, {1110.99988f, 817.585876f}, {1110.70715f, 817.292908f}}}},
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000030
31 {{{{55, 207}, {52.238574981689453, 207}, {50, 204.76142883300781}, {50, 202}}},
32 {{{55, 207}, {52.929431915283203, 206.99949645996094},
caryclark54359292015-03-26 07:52:43 -070033 {51.464466094970703, 205.53553771972656}}}},
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000034
skia.committer@gmail.comb0a05892013-10-03 07:01:37 +000035 {{{{49, 47}, {49, 74.614250183105469}, {26.614250183105469, 97}, {-1, 97}}},
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000036 {{{-8.659739592076221e-015, 96.991401672363281}, {20.065492630004883, 96.645187377929688},
caryclark54359292015-03-26 07:52:43 -070037 {34.355339050292969, 82.355339050292969}}}},
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000038
skia.committer@gmail.com2b34fe02013-05-08 07:01:40 +000039 {{{{10,234}, {10,229.58172607421875}, {13.581720352172852,226}, {18,226}}},
caryclark54359292015-03-26 07:52:43 -070040 {{{18,226}, {14.686291694641113,226}, {12.342399597167969,228.3424072265625}}}},
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000041
skia.committer@gmail.com2b34fe02013-05-08 07:01:40 +000042 {{{{10,234}, {10,229.58172607421875}, {13.581720352172852,226}, {18,226}}},
caryclark54359292015-03-26 07:52:43 -070043 {{{12.342399597167969,228.3424072265625}, {10,230.68629455566406}, {10,234}}}},
caryclark@google.coma5e55922013-05-07 18:51:31 +000044};
45
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000046static const int quadCubicTests_count = (int) SK_ARRAY_COUNT(quadCubicTests);
47
48static void cubicQuadIntersection(skiatest::Reporter* reporter, int index) {
49 int iIndex = static_cast<int>(index);
50 const SkDCubic& cubic = quadCubicTests[index].cubic;
51 SkASSERT(ValidCubic(cubic));
52 const SkDQuad& quad = quadCubicTests[index].quad;
53 SkASSERT(ValidQuad(quad));
54 SkReduceOrder reduce1;
55 SkReduceOrder reduce2;
56 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics);
57 int order2 = reduce2.reduce(quad);
58 if (order1 != 4) {
59 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
60 REPORTER_ASSERT(reporter, 0);
61 }
62 if (order2 != 3) {
63 SkDebugf("[%d] quad order=%d\n", iIndex, order2);
64 REPORTER_ASSERT(reporter, 0);
65 }
caryclark54359292015-03-26 07:52:43 -070066 SkDCubic quadToCubic = quad.toCubic();
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000067 SkIntersections i;
caryclark54359292015-03-26 07:52:43 -070068 int roots = i.intersect(cubic, quadToCubic);
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000069 for (int pt = 0; pt < roots; ++pt) {
70 double tt1 = i[0][pt];
71 SkDPoint xy1 = cubic.ptAtT(tt1);
72 double tt2 = i[1][pt];
73 SkDPoint xy2 = quad.ptAtT(tt2);
74 if (!xy1.approximatelyEqual(xy2)) {
75 SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n",
76 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
77 }
78 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000079 }
80 reporter->bumpTestCount();
81}
caryclark@google.coma5e55922013-05-07 18:51:31 +000082
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000083DEF_TEST(PathOpsCubicQuadIntersection, reporter) {
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000084 for (int index = 0; index < quadCubicTests_count; ++index) {
85 cubicQuadIntersection(reporter, index);
caryclark@google.coma5e55922013-05-07 18:51:31 +000086 reporter->bumpTestCount();
87 }
88}
commit-bot@chromium.org4431e772014-04-14 17:08:59 +000089
90DEF_TEST(PathOpsCubicQuadIntersectionOneOff, reporter) {
91 cubicQuadIntersection(reporter, 0);
92}