Searched refs:endTan (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicUtilities.cpp54 _Vector endTan = c[2] - c[3]; local
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/skia/experimental/Intersection/
H A DCubicUtilities.cpp54 _Vector endTan = c[2] - c[3]; local
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/
H A DSkPathOpsCubic.cpp96 SkDVector endTan = fPts[2] - fPts[3]; local
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;
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp96 SkDVector endTan = fPts[2] - fPts[3]; local
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 505 milliseconds