OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:quadT
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/pathops/
SkDQuadLineIntersection.cpp
177
double
quadT
= rootVals[index];
178
double lineT = findLineT(
quadT
);
180
if (pinTs(&
quadT
, &lineT, &pt, kPointUninitialized) && uniqueAnswer(
quadT
, pt)) {
181
fIntersections->insert(
quadT
, lineT, pt);
206
double
quadT
= rootVals[index];
207
SkDPoint pt = fQuad.ptAtT(
quadT
);
209
if (pinTs(&
quadT
, &lineT, &pt, kPointInitialized) && uniqueAnswer(
quadT
, pt)) {
210
fIntersections->insert(
quadT
, lineT, pt)
[
all
...]
/external/skia/tests/
PathOpsQuadLineIntersectionTest.cpp
91
double
quadT
= intersections[0][inner];
92
SkDPoint quadXY = quad.ptAtT(
quadT
);
PathOpsQuadLineIntersectionThreadedTest.cpp
57
double
quadT
= intersections[0][index];
58
SkDPoint quadXY = quad.ptAtT(
quadT
);
Completed in 347 milliseconds