OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startT
(Results
1 - 23
of
23
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCurve.h
102
static SkPoint quad_top(const SkPoint a[3], double
startT
, double endT) {
105
SkDPoint topPt = quad.top(
startT
, endT);
109
static SkPoint cubic_top(const SkPoint a[4], double
startT
, double endT) {
112
SkDPoint topPt = cubic.top(
startT
, endT);
123
static bool line_is_vertical(const SkPoint a[2], double
startT
, double endT) {
126
SkDPoint dst[2] = { line.ptAtT(
startT
), line.ptAtT(endT) };
130
static bool quad_is_vertical(const SkPoint a[3], double
startT
, double endT) {
133
SkDQuad dst = quad.subDivide(
startT
, endT);
137
static bool cubic_is_vertical(const SkPoint a[4], double
startT
, double endT) {
140
SkDCubic dst = cubic.subDivide(
startT
, endT)
[
all
...]
SkOpContour.cpp
65
double
startT
= coincidence.fTs[0][0];
68
if ((cancelers = startSwapped =
startT
> endT)) {
69
SkTSwap(
startT
, endT);
71
SkASSERT(!approximately_negative(endT -
startT
));
80
// make sure
startT
and endT have t entries
81
if (
startT
> 0 || oEndT < 1
82
|| thisOne.isMissing(
startT
) || other.isMissing(oEndT)) {
83
thisOne.addTPair(
startT
, &other, oEndT, true, coincidence.fPts[startSwapped]);
90
if (
startT
> 0 || oStartT > 0
91
|| thisOne.isMissing(
startT
) || other.isMissing(oStartT))
[
all
...]
SkPathOpsCubic.h
77
SkDPoint top(double
startT
, double endT) const;
SkPathOpsQuad.h
63
SkDPoint top(double
startT
, double endT) const;