OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cubicatt
(Results
1 - 2
of
2
) sorted by null
/external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp
59
SkDPoint
cubicAtT
= cubic.ptAtT(t);
60
if (
cubicAtT
.approximatelyEqual(pt)) {
63
double calcX =
cubicAtT
.fX - pt.fX;
64
double calcY =
cubicAtT
.fY - pt.fY;
/external/skia/src/pathops/
SkPathOpsCubic.cpp
34
SkDPoint
cubicAtT
= ptAtT(t);
35
double calcPos = (&
cubicAtT
.fX)[xAxis];
41
if (approximately_equal_half(lessPt.fX,
cubicAtT
.fX)
42
&& approximately_equal_half(lessPt.fY,
cubicAtT
.fY)) {
60
if (approximately_equal_half(morePt.fX,
cubicAtT
.fX)
61
&& approximately_equal_half(morePt.fY,
cubicAtT
.fY)) {
71
cubicAtT
= testAtT;
72
calcPos = (&
cubicAtT
.fX)[xAxis];
Completed in 164 milliseconds