Searched defs:vertexIndex2 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPolygon.cpp67 unsigned vertexIndex2 = nextVertexIndex(vertexIndex1, nVertices, clockwise); local
69 while (vertexIndex2 && areCoincidentPoints(polygon.vertexAt(vertexIndex1), polygon.vertexAt(vertexIndex2)))
70 vertexIndex2 = nextVertexIndex(vertexIndex2, nVertices, clockwise);
72 while (vertexIndex2) {
73 unsigned vertexIndex3 = nextVertexIndex(vertexIndex2, nVertices, clockwise);
74 if (!areCollinearPoints(polygon.vertexAt(vertexIndex1), polygon.vertexAt(vertexIndex2), polygon.vertexAt(vertexIndex3)))
76 vertexIndex2 = vertexIndex3;
79 return vertexIndex2;
[all...]
H A DFloatPolygon.h127 unsigned vertexIndex2() const { return m_vertexIndex2; } function in class:blink::FloatPolygonEdge

Completed in 828 milliseconds