HomeSort by relevance Sort by last modified time
    Searched defs:endEdge (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicUtilities.cpp 64 _Line endEdge = {c[3], c[3]};
65 endEdge[1].x -= endTan.y;
66 endEdge[1].y += endTan.x;
71 double leftEnd1 = is_left(endEdge, c[1]);
72 if (leftEnd1 * is_left(endEdge, c[2]) < 0) {
  /external/skia/experimental/Intersection/
CubicUtilities.cpp 64 _Line endEdge = {c[3], c[3]};
65 endEdge[1].x -= endTan.y;
66 endEdge[1].y += endTan.x;
71 double leftEnd1 = is_left(endEdge, c[1]);
72 if (leftEnd1 * is_left(endEdge, c[2]) < 0) {
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 106 SkDLine endEdge = {{fPts[3], fPts[3]}};
107 endEdge[1].fX -= endTan.fY;
108 endEdge[1].fY += endTan.fX;
113 double leftEnd1 = endEdge.isLeft(fPts[1]);
114 if (leftEnd1 * endEdge.isLeft(fPts[2]) < 0) {
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 106 SkDLine endEdge = {{fPts[3], fPts[3]}};
107 endEdge[1].fX -= endTan.fY;
108 endEdge[1].fY += endTan.fX;
113 double leftEnd1 = endEdge.isLeft(fPts[1]);
114 if (leftEnd1 * endEdge.isLeft(fPts[2]) < 0) {

Completed in 90 milliseconds