Flutter Engine
The Flutter Engine
PathOpsConicLineIntersectionTest.cpp
Go to the documentation of this file.
1/*
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 */
11#include "src/core/SkGeometry.h"
19#include "tests/Test.h"
20
21#include <array>
22#include <cstddef>
23#include <utility>
24
25static struct lineConic {
28 int result;
30} lineConicTests[] = {
31 {
32 {{{{30.6499996,25.6499996}, {30.6499996,20.6499996}, {25.6499996,20.6499996}}}, 0.707107008f},
33 {{{25.6499996,20.6499996}, {45.6500015,20.6499996}}},
34 1,
35 {{25.6499996,20.6499996}, {0,0}}
36 },
37};
38
40
41static int doIntersect(SkIntersections& intersections, const SkDConic& conic, const SkDLine& line,
42 bool& flipped) {
43 int result;
44 flipped = false;
45 if (line[0].fX == line[1].fX) {
46 double top = line[0].fY;
47 double bottom = line[1].fY;
48 flipped = top > bottom;
49 if (flipped) {
50 using std::swap;
51 swap(top, bottom);
52 }
53 result = intersections.vertical(conic, top, bottom, line[0].fX, flipped);
54 } else if (line[0].fY == line[1].fY) {
55 double left = line[0].fX;
56 double right = line[1].fX;
57 flipped = left > right;
58 if (flipped) {
59 using std::swap;
60 swap(left, right);
61 }
62 result = intersections.horizontal(conic, left, right, line[0].fY, flipped);
63 } else {
64 intersections.intersect(conic, line);
65 result = intersections.used();
66 }
67 return result;
68}
69
70static struct oneLineConic {
73} oneOffs[] = {
74 {{{{{30.6499996,25.6499996}, {30.6499996,20.6499996}, {25.6499996,20.6499996}}}, 0.707107008f},
75 {{{25.6499996,20.6499996}, {45.6500015,20.6499996}}}}
76};
77
79
81 bool flipped = false;
82 for (size_t index = 0; index < oneOffs_count; ++index) {
83 const ConicPts& c = oneOffs[index].conic;
85 conic.debugSet(c.fPts.fPts, c.fWeight);
87 const SkDLine& line = oneOffs[index].line;
89 SkIntersections intersections;
90 int result = doIntersect(intersections, conic, line, flipped);
91 for (int inner = 0; inner < result; ++inner) {
92 double conicT = intersections[0][inner];
93 SkDPoint conicXY = conic.ptAtT(conicT);
94 double lineT = intersections[1][inner];
95 SkDPoint lineXY = line.ptAtT(lineT);
96 if (!conicXY.approximatelyEqual(lineXY)) {
97 conicXY.approximatelyEqual(lineXY);
98 }
100 }
101 }
102}
103
104DEF_TEST(PathOpsConicLineIntersectionOneOff, reporter) {
106}
107
108DEF_TEST(PathOpsConicLineIntersection, reporter) {
109 for (size_t index = 0; index < lineConicTests_count; ++index) {
110 int iIndex = static_cast<int>(index);
111 const ConicPts& c = lineConicTests[index].conic;
113 conic.debugSet(c.fPts.fPts, c.fWeight);
115 const SkDLine& line = lineConicTests[index].line;
117 SkReduceOrder reducer;
118 SkPoint pts[3] = { conic.fPts.fPts[0].asSkPoint(), conic.fPts.fPts[1].asSkPoint(),
119 conic.fPts.fPts[2].asSkPoint() };
120 SkPoint reduced[3];
121 SkConic floatConic;
122 floatConic.set(pts, conic.fWeight);
123 SkPath::Verb order1 = SkReduceOrder::Conic(floatConic, reduced);
124 if (order1 != SkPath::kConic_Verb) {
125 SkDebugf("%s [%d] conic verb=%d\n", __FUNCTION__, iIndex, order1);
127 }
128 int order2 = reducer.reduce(line);
129 if (order2 < 2) {
130 SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2);
132 }
133 SkIntersections intersections;
134 bool flipped = false;
135 int result = doIntersect(intersections, conic, line, flipped);
137 if (intersections.used() <= 0) {
138 continue;
139 }
140 for (int pt = 0; pt < result; ++pt) {
141 double tt1 = intersections[0][pt];
142 REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1);
143 SkDPoint t1 = conic.ptAtT(tt1);
144 double tt2 = intersections[1][pt];
145 REPORTER_ASSERT(reporter, tt2 >= 0 && tt2 <= 1);
146 SkDPoint t2 = line.ptAtT(tt2);
147 if (!t1.approximatelyEqual(t2)) {
148 SkDebugf("%s [%d,%d] x!= t1=%1.9g (%1.9g,%1.9g) t2=%1.9g (%1.9g,%1.9g)\n",
149 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY);
151 }
153 && (lineConicTests[index].result == 1
154 || !t1.approximatelyEqual(lineConicTests[index].expected[1]))) {
155 SkDebugf("%s t1=(%1.9g,%1.9g)\n", __FUNCTION__, t1.fX, t1.fY);
157 }
158 }
159 }
160}
reporter
Definition: FontMgrTest.cpp:39
static struct oneLineConic oneOffs[]
static void testOneOffs(skiatest::Reporter *reporter)
static size_t lineConicTests_count
static struct lineConic lineConicTests[]
DEF_TEST(PathOpsConicLineIntersectionOneOff, reporter)
static size_t oneOffs_count
static int doIntersect(SkIntersections &intersections, const SkDConic &conic, const SkDLine &line, bool &flipped)
bool ValidConic(const SkDConic &conic)
bool ValidLine(const SkDLine &line)
#define SkASSERT(cond)
Definition: SkAssert.h:116
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static bool left(const SkPoint &p0, const SkPoint &p1)
static bool right(const SkPoint &p0, const SkPoint &p1)
void swap(sk_sp< T > &a, sk_sp< T > &b)
Definition: SkRefCnt.h:341
#define REPORTER_ASSERT(r, cond,...)
Definition: Test.h:286
int intersect(const SkDLine &, const SkDLine &)
int vertical(const SkDLine &, double top, double bottom, double x, bool flipped)
int used() const
int horizontal(const SkDLine &, double left, double right, double y, bool flipped)
@ kConic_Verb
Definition: SkPath.h:1469
GAsyncResult * result
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
AI float conic(float tolerance, const SkPoint pts[], float w, const VectorXform &vectorXform=VectorXform())
Definition: WangsFormula.h:287
SkScalar fWeight
QuadPts fPts
SkDPoint fPts[kPointCount]
void set(const SkPoint pts[3], SkScalar w)
Definition: SkGeometry.h:339
bool approximatelyEqual(const SkDPoint &a) const
static SkPath::Verb Conic(const SkConic &conic, SkPoint *reducePts)
int reduce(const SkDCubic &cubic, Quadratics)