OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numerA
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/experimental/Intersection/
LineIntersection.cpp
57
double
numerA
= ab0y * bxLen - byLen * ab0x;
59
bool mayNotOverlap = (
numerA
< 0 && denom >
numerA
) || (
numerA
> 0 && denom <
numerA
)
61
numerA
/= denom;
63
if ((!approximately_zero(denom) || (!approximately_zero_inverse(
numerA
)
64
&& !approximately_zero_inverse(numerB))) && !sk_double_isnan(
numerA
)
69
i.fT[0][0] =
numerA
;
71
i.fPt[0] = xy_at_t(a,
numerA
);
[
all
...]
/external/chromium_org/third_party/skia/src/pathops/
SkDLineIntersection.cpp
77
double
numerA
= ab0.fY * bLen.fX - bLen.fY * ab0.fX;
80
if (!between(0,
numerA
, denom) || !between(0, numerB, denom)) {
85
numerA
/= denom;
89
fT[0][0] =
numerA
;
148
double
numerA
= ab0y * bxLen - byLen * ab0x;
151
if (between(0,
numerA
, denom) && between(0, numerB, denom)) {
152
fT[0][0] =
numerA
/ denom;
Completed in 51 milliseconds