OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cubicT
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkDCubicLineIntersection.cpp
131
double
cubicT
= rootVals[index];
132
double lineT = findLineT(
cubicT
);
134
if (pinTs(&
cubicT
, &lineT, &pt, kPointUninitialized)) {
136
SkDPoint cPt = fCubic.ptAtT(
cubicT
);
145
if (
cubicT
== existingCubicT) {
149
double cubicMidT = (existingCubicT +
cubicT
) / 2;
155
fIntersections->insert(
cubicT
, lineT, pt);
188
double
cubicT
= roots[index];
190
pt.fX = fCubic.ptAtT(
cubicT
).fX;
193
if (pinTs(&
cubicT
, &lineT, &pt, kPointInitialized))
[
all
...]
/external/chromium_org/third_party/skia/experimental/Intersection/
LineCubicIntersection.cpp
107
double
cubicT
= rootVals[index];
108
double lineT = findLineT(
cubicT
);
109
if (pinTs(
cubicT
, lineT)) {
112
intersections.insert(
cubicT
, lineT, pt);
131
double
cubicT
= rootVals[index];
132
xy_at_t(cubic,
cubicT
, pt.x, pt.y);
134
if (pinTs(
cubicT
, lineT)) {
135
intersections.insert(
cubicT
, lineT, pt);
157
double
cubicT
= rootVals[index];
158
xy_at_t(cubic,
cubicT
, pt.x, pt.y)
[
all
...]
/external/chromium_org/third_party/skia/tests/
PathOpsCubicQuadIntersectionTest.cpp
211
double
cubicT
= (found - 1 + liner[1][0]) / 1000.;
212
SkDVector cV = cubic.dxdyAtT(
cubicT
);
219
double diffT = fabs(
cubicT
- quadT);
241
locals.pt(0).fX, locals.pt(0).fY, quadT,
cubicT
, dist.length(), qxc);
244
quadT,
cubicT
, dist.length(), qxc);
PathOpsCubicLineIntersectionTest.cpp
151
double
cubicT
= i[0][0];
152
SkDPoint prev = cubic.ptAtT(
cubicT
* 2 - 1);
153
SkDPoint sect = cubic.ptAtT(
cubicT
);
Completed in 441 milliseconds