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

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.cpp 67 unsigned vertexIndex2 = nextVertexIndex(vertexIndex1, nVertices, clockwise);
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...]
FloatPolygonTest.cpp 109 EXPECT_EQ(1u, triangle.edgeAt(0).vertexIndex2());
111 EXPECT_EQ(2u, triangle.edgeAt(1).vertexIndex2());
113 EXPECT_EQ(0u, triangle.edgeAt(2).vertexIndex2());
FloatPolygon.h 128 unsigned vertexIndex2() const { return m_vertexIndex2; }

Completed in 306 milliseconds