HomeSort by relevance Sort by last modified time
    Searched refs:dxT (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadLineIntersection.cpp 302 double dxT = (xy.fX - fLine[0].fX) / dx;
304 if (!between(FLT_EPSILON, dxT, 1 - FLT_EPSILON) && between(0, dyT, 1)) {
307 if (!between(FLT_EPSILON, dyT, 1 - FLT_EPSILON) && between(0, dxT, 1)) {
308 return dxT;
310 return fabs(dx) > fabs(dy) ? dxT : dyT;
  /external/skia/src/pathops/
SkDQuadLineIntersection.cpp 302 double dxT = (xy.fX - fLine[0].fX) / dx;
304 if (!between(FLT_EPSILON, dxT, 1 - FLT_EPSILON) && between(0, dyT, 1)) {
307 if (!between(FLT_EPSILON, dyT, 1 - FLT_EPSILON) && between(0, dxT, 1)) {
308 return dxT;
310 return fabs(dx) > fabs(dy) ? dxT : dyT;

Completed in 57 milliseconds