Flutter Engine
The Flutter Engine
Classes | Functions | Variables
PathOpsCubicLineIntersectionTest.cpp File Reference
#include "include/core/SkTypes.h"
#include "include/private/base/SkDebug.h"
#include "src/pathops/SkIntersections.h"
#include "src/pathops/SkPathOpsCubic.h"
#include "src/pathops/SkPathOpsDebug.h"
#include "src/pathops/SkPathOpsLine.h"
#include "src/pathops/SkPathOpsPoint.h"
#include "src/pathops/SkReduceOrder.h"
#include "tests/PathOpsTestCommon.h"
#include "tests/Test.h"
#include <array>
#include <cstddef>
#include <utility>

Go to the source code of this file.

Classes

struct  lineCubic
 

Functions

static void testFail (skiatest::Reporter *reporter, int iIndex)
 
static int doIntersect (SkIntersections &intersections, const SkDCubic &cubic, const SkDLine &line)
 
static void testOne (skiatest::Reporter *reporter, int iIndex)
 
 DEF_TEST (PathOpsFailCubicLineIntersection, reporter)
 
 DEF_TEST (PathOpsCubicLineIntersection, reporter)
 
 DEF_TEST (PathOpsCubicLineIntersectionOneOff, reporter)
 

Variables

static lineCubic failLineCubicTests []
 
static const size_t failLineCubicTests_count = std::size(failLineCubicTests)
 
static lineCubic lineCubicTests []
 
static const size_t lineCubicTests_count = std::size(lineCubicTests)
 

Function Documentation

◆ DEF_TEST() [1/3]

DEF_TEST ( PathOpsCubicLineIntersection  ,
reporter   
)

Definition at line 194 of file PathOpsCubicLineIntersectionTest.cpp.

194 {
195 for (size_t index = 0; index < lineCubicTests_count; ++index) {
196 int iIndex = static_cast<int>(index);
197 testOne(reporter, iIndex);
198 reporter->bumpTestCount();
199 }
200}
reporter
Definition: FontMgrTest.cpp:39
static const size_t lineCubicTests_count
static void testOne(skiatest::Reporter *reporter, int iIndex)

◆ DEF_TEST() [2/3]

DEF_TEST ( PathOpsCubicLineIntersectionOneOff  ,
reporter   
)

Definition at line 202 of file PathOpsCubicLineIntersectionTest.cpp.

202 {
203 int iIndex = 0;
204 testOne(reporter, iIndex);
205 const CubicPts& cuPts = lineCubicTests[iIndex].cubic;
207 cubic.debugSet(cuPts.fPts);
208 const SkDLine& line = lineCubicTests[iIndex].line;
210 i.intersect(cubic, line);
211 SkASSERT(i.used() == 1);
212}
static lineCubic lineCubicTests[]
#define SkASSERT(cond)
Definition: SkAssert.h:116
AI float cubic(float precision, const SkPoint pts[], const VectorXform &vectorXform=VectorXform())
Definition: WangsFormula.h:195
SkDPoint fPts[kPointCount]

◆ DEF_TEST() [3/3]

DEF_TEST ( PathOpsFailCubicLineIntersection  ,
reporter   
)

Definition at line 186 of file PathOpsCubicLineIntersectionTest.cpp.

186 {
187 for (size_t index = 0; index < failLineCubicTests_count; ++index) {
188 int iIndex = static_cast<int>(index);
189 testFail(reporter, iIndex);
190 reporter->bumpTestCount();
191 }
192}
static void testFail(skiatest::Reporter *reporter, int iIndex)
static const size_t failLineCubicTests_count

◆ doIntersect()

static int doIntersect ( SkIntersections intersections,
const SkDCubic cubic,
const SkDLine line 
)
static

Definition at line 109 of file PathOpsCubicLineIntersectionTest.cpp.

109 {
110 int result;
111 bool flipped = false;
112 if (line[0].fX == line[1].fX) {
113 double top = line[0].fY;
114 double bottom = line[1].fY;
115 flipped = top > bottom;
116 if (flipped) {
117 using std::swap;
118 swap(top, bottom);
119 }
120 result = intersections.vertical(cubic, top, bottom, line[0].fX, flipped);
121 } else if (line[0].fY == line[1].fY) {
122 double left = line[0].fX;
123 double right = line[1].fX;
124 flipped = left > right;
125 if (flipped) {
126 using std::swap;
127 swap(left, right);
128 }
129 result = intersections.horizontal(cubic, left, right, line[0].fY, flipped);
130 } else {
131 intersections.intersect(cubic, line);
132 result = intersections.used();
133 }
134 return result;
135}
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
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)
GAsyncResult * result

◆ testFail()

static void testFail ( skiatest::Reporter reporter,
int  iIndex 
)
static

Definition at line 35 of file PathOpsCubicLineIntersectionTest.cpp.

35 {
36 const CubicPts& cuPts = failLineCubicTests[iIndex].cubic;
38 cubic.debugSet(cuPts.fPts);
40 const SkDLine& line = failLineCubicTests[iIndex].line;
42 SkReduceOrder reduce1;
43 SkReduceOrder reduce2;
44 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics);
45 int order2 = reduce2.reduce(line);
46 if (order1 < 4) {
47 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
49 }
50 if (order2 < 2) {
51 SkDebugf("[%d] line order=%d\n", iIndex, order2);
53 }
54 if (order1 == 4 && order2 == 2) {
56 int roots = i.intersect(cubic, line);
58 }
59}
static lineCubic failLineCubicTests[]
bool ValidCubic(const SkDCubic &cubic)
bool ValidLine(const SkDLine &line)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
#define REPORTER_ASSERT(r, cond,...)
Definition: Test.h:286
int reduce(const SkDCubic &cubic, Quadratics)

◆ testOne()

static void testOne ( skiatest::Reporter reporter,
int  iIndex 
)
static

Definition at line 137 of file PathOpsCubicLineIntersectionTest.cpp.

137 {
138 const CubicPts& cuPts = lineCubicTests[iIndex].cubic;
140 cubic.debugSet(cuPts.fPts);
142 const SkDLine& line = lineCubicTests[iIndex].line;
144 SkReduceOrder reduce1;
145 SkReduceOrder reduce2;
146 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics);
147 int order2 = reduce2.reduce(line);
148 if (order1 < 4) {
149 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
151 }
152 if (order2 < 2) {
153 SkDebugf("[%d] line order=%d\n", iIndex, order2);
155 }
156 if (order1 == 4 && order2 == 2) {
158 int roots = doIntersect(i, cubic, line);
159 for (int pt = 0; pt < roots; ++pt) {
160 double tt1 = i[0][pt];
161 SkDPoint xy1 = cubic.ptAtT(tt1);
162 double tt2 = i[1][pt];
163 SkDPoint xy2 = line.ptAtT(tt2);
164 if (!xy1.approximatelyEqual(xy2)) {
165 SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n",
166 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
167 }
169 }
170#if ONE_OFF_DEBUG
171 double cubicT = i[0][0];
172 SkDPoint prev = cubic.ptAtT(cubicT * 2 - 1);
173 SkDPoint sect = cubic.ptAtT(cubicT);
174 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
175 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
176 SkDPoint prevL = line.ptAtT(i[1][0] - 0.0000007);
177 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prevL.fX, prevL.fY, i.pt(0).fX, i.pt(0).fY);
178 SkDPoint nextL = line.ptAtT(i[1][0] + 0.0000007);
179 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", i.pt(0).fX, i.pt(0).fY, nextL.fX, nextL.fY);
180 SkDebugf("prevD=%1.9g dist=%1.9g nextD=%1.9g\n", prev.distance(nextL),
181 sect.distance(i.pt(0)), cubic[3].distance(prevL));
182#endif
183 }
184}
static float prev(float f)
static int doIntersect(SkIntersections &intersections, const SkDCubic &cubic, const SkDLine &line)
bool approximatelyEqual(const SkDPoint &a) const
double distance(const SkDPoint &a) const

Variable Documentation

◆ failLineCubicTests

lineCubic failLineCubicTests[]
static
Initial value:
= {
{{{{37.5273438,-1.44140625}, {37.8736992,-1.69921875}, {38.1640625,-2.140625},
{38.3984375,-2.765625}}},
{{{40.625,-5.7890625}, {37.7109375,1.3515625}}}},
}

Definition at line 27 of file PathOpsCubicLineIntersectionTest.cpp.

◆ failLineCubicTests_count

const size_t failLineCubicTests_count = std::size(failLineCubicTests)
static

Definition at line 33 of file PathOpsCubicLineIntersectionTest.cpp.

◆ lineCubicTests

lineCubic lineCubicTests[]
static

Definition at line 61 of file PathOpsCubicLineIntersectionTest.cpp.

◆ lineCubicTests_count

const size_t lineCubicTests_count = std::size(lineCubicTests)
static

Definition at line 107 of file PathOpsCubicLineIntersectionTest.cpp.