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

  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicUtilities.cpp 61 _Line startEdge = {c[0], c[0]};
62 startEdge[1].x -= startTan.y;
63 startEdge[1].y += startTan.x;
67 double leftStart1 = is_left(startEdge, c[1]);
68 if (leftStart1 * is_left(startEdge, c[2]) < 0) {
  /external/skia/experimental/Intersection/
CubicUtilities.cpp 61 _Line startEdge = {c[0], c[0]};
62 startEdge[1].x -= startTan.y;
63 startEdge[1].y += startTan.x;
67 double leftStart1 = is_left(startEdge, c[1]);
68 if (leftStart1 * is_left(startEdge, c[2]) < 0) {
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 103 SkDLine startEdge = {{fPts[0], fPts[0]}};
104 startEdge[1].fX -= startTan.fY;
105 startEdge[1].fY += startTan.fX;
109 double leftStart1 = startEdge.isLeft(fPts[1]);
110 if (leftStart1 * startEdge.isLeft(fPts[2]) < 0) {
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 103 SkDLine startEdge = {{fPts[0], fPts[0]}};
104 startEdge[1].fX -= startTan.fY;
105 startEdge[1].fY += startTan.fX;
109 double leftStart1 = startEdge.isLeft(fPts[1]);
110 if (leftStart1 * startEdge.isLeft(fPts[2]) < 0) {

Completed in 136 milliseconds