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

  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicUtilities.cpp 54 _Vector endTan = c[2] - c[3];
55 if (endTan.x == 0 && endTan.y == 0) {
56 endTan = c[1] - c[3];
58 if (startTan.dot(endTan) >= 0) {
65 endEdge[1].x -= endTan.y;
66 endEdge[1].y += endTan.x;
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 96 SkDVector endTan = fPts[2] - fPts[3];
97 if (endTan.fX == 0 && endTan.fY == 0) {
98 endTan = fPts[1] - fPts[3];
100 if (startTan.dot(endTan) >= 0) {
107 endEdge[1].fX -= endTan.fY;
108 endEdge[1].fY += endTan.fX;

Completed in 5145 milliseconds