Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
PathOpsConicQuadIntersectionTest.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2015 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 */
15#include "tests/Test.h"
16
17#include <array>
18
23 {{{{{0.00000000000000000, -1.8135968446731567 },
24 {0.00000000000000000, -1.0033817291259766 },
25 {-0.0073835160583257675, 0.00000000000000000 }}}, 2.26585215e+11f},
26 {{{0.00000000000000000, -1.0000113248825073 },
27 {-2.4824290449032560e-05, -1.0000115633010864 },
28 {-0.0073835160583257675, 0.00000000000000000 }}}},
29
30 {{{{{494.348663,224.583771}, {494.365143,224.633194}, {494.376404,224.684067}}}, 0.998645842f},
31 {{{494.30481,224.474213}, {494.334961,224.538284}, {494.355774,224.605927}}}},
32
33 {{{{{494.348663,224.583771}, {494.365143,224.633194}, {494.376404,224.684067}}}, 0.998645842f},
34 {{{494.355774f, 224.605927f}, {494.363708f, 224.631714f}, {494.370148f, 224.657471f}}}},
35};
36
37static const int conicQuadTests_count = (int) std::size(conicQuadTests);
38
40 const ConicPts& c = conicQuadTests[index].conic;
41 SkDConic conic;
42 conic.debugSet(c.fPts.fPts, c.fWeight);
43 SkASSERT(ValidConic(conic));
44 const QuadPts& q = conicQuadTests[index].quad;
45 SkDQuad quad;
46 quad.debugSet(q.fPts);
47 SkASSERT(ValidQuad(quad));
48 SkReduceOrder reduce1;
49 SkReduceOrder reduce2;
50 int order1 = reduce2.reduce(conic.fPts);
51 int order2 = reduce1.reduce(quad);
52 if (order2 != 3) {
53 SkDebugf("[%d] conic order=%d\n", index, order1);
55 }
56 if (order1 != 3) {
57 SkDebugf("[%d] quad order=%d\n", index, order2);
59 }
61 int roots = i.intersect(conic, quad);
62 for (int pt = 0; pt < roots; ++pt) {
63 double tt1 = i[0][pt];
64 SkDPoint xy1 = conic.ptAtT(tt1);
65 double tt2 = i[1][pt];
66 SkDPoint xy2 = quad.ptAtT(tt2);
67 if (!xy1.approximatelyEqual(xy2)) {
68 SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n",
69 __FUNCTION__, index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
70 }
72 }
73 reporter->bumpTestCount();
74}
75
76DEF_TEST(PathOpsConicQuadIntersection, reporter) {
77 for (int index = 0; index < conicQuadTests_count; ++index) {
79 reporter->bumpTestCount();
80 }
81}
82
83DEF_TEST(PathOpsConicQuadIntersectionOneOff, reporter) {
85}
reporter
static const int conicQuadTests_count
static void conicQuadIntersection(skiatest::Reporter *reporter, int index)
static struct conicQuad conicQuadTests[]
bool ValidConic(const SkDConic &conic)
bool ValidQuad(const SkDQuad &quad)
#define SkASSERT(cond)
Definition SkAssert.h:116
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
#define DEF_TEST(name, reporter)
Definition Test.h:312
#define REPORTER_ASSERT(r, cond,...)
Definition Test.h:286
Type::kYUV Type::kRGBA() int(0.7 *637)
int intersect(const SkDLine &, const SkDLine &)
SkScalar fWeight
SkDPoint fPts[kPointCount]
bool approximatelyEqual(const SkDPoint &a) const
void debugSet(const SkDPoint *pts)
SkDPoint ptAtT(double t) const
int reduce(const SkDCubic &cubic, Quadratics)