OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endT
(Results
1 - 9
of
9
) sorted by null
/external/skia/src/pathops/
SkPathOpsRect.cpp
13
void SkDRect::setBounds(const SkDQuad& curve, const SkDQuad& sub, double startT, double
endT
) {
25
double t = startT + (
endT
- startT) * tValues[index];
30
void SkDRect::setBounds(const SkDConic& curve, const SkDConic& sub, double startT, double
endT
) {
42
double t = startT + (
endT
- startT) * tValues[index];
47
void SkDRect::setBounds(const SkDCubic& curve, const SkDCubic& sub, double startT, double
endT
) {
59
double t = startT + (
endT
- startT) * tValues[index];
SkPathOpsCurve.h
198
static bool line_is_vertical(const SkPoint a[2], SkScalar , double startT, double
endT
) {
201
SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(
endT
) };
205
static bool quad_is_vertical(const SkPoint a[3], SkScalar , double startT, double
endT
) {
208
SkDQuad dst = quad.subDivide(startT,
endT
);
212
static bool conic_is_vertical(const SkPoint a[3], SkScalar weight, double startT, double
endT
) {
215
SkDConic dst = conic.subDivide(startT,
endT
);
219
static bool cubic_is_vertical(const SkPoint a[4], SkScalar , double startT, double
endT
) {
222
SkDCubic dst = cubic.subDivide(startT,
endT
);
SkPathOpsCubic.h
124
double top(const SkDCubic& dCurve, double startT, double
endT
, SkDPoint*topPt) const;
SkOpSegment.cpp
[
all
...]
SkPathOpsTSect.h
111
double
endT
() const {
[
all
...]
SkOpAngle.cpp
[
all
...]
SkOpSegment.h
132
void debugAddAngle(double startT, double
endT
, SkChunkAlloc*);
SkPathOpsCubic.cpp
685
double SkDCubic::top(const SkDCubic& dCurve, double startT, double
endT
, SkDPoint*topPt) const {
690
double t = startT + (
endT
- startT) * extremeTs[index];
/external/skia/tests/
PathOpsAngleTest.cpp
475
void SkOpSegment::debugAddAngle(double startT, double
endT
, SkChunkAlloc* allocator) {
478
SkOpPtT* endPtT =
endT
== 0 ? fHead.ptT() :
endT
== 1 ? fTail.ptT()
479
: this->addT(
endT
, kNoAlias, allocator);
490
if (startT <
endT
) {
Completed in 410 milliseconds