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

  /external/chromium_org/third_party/skia/experimental/Intersection/
ConvexHull.cpp 46 Cubic rotPath;
47 if (!rotate(cubic, yMin, index, rotPath)) { // ! if cbc[yMin]==cbc[idx]
52 int sides = side(rotPath[side1].y - rotPath[yMin].y);
53 sides ^= side(rotPath[side2].y - rotPath[yMin].y);
ConvexHull_Test.cpp 106 static void transform(const Cubic& cubic, const Matrix3x2& matrix, Cubic& rotPath) {
108 rotPath[index].x = cubic[index].x * matrix[0][0]
110 rotPath[index].y = cubic[index].x * matrix[0][1]
143 Cubic rotPath;
144 transform(cubic, matrix, rotPath);
153 if (debug_rotate_to_hull) SkDebugf("(%g,%g) ", rotPath[index].x, rotPath[index].y);
154 sides[side(rotPath[index].y - rotPath[inner].y)]++;
156 && side(rotPath[index].y - rotPath[inner].y) == 1
    [all...]

Completed in 42 milliseconds