OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:vertexindex2
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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
...]
FloatPolygon.h
125
unsigned
vertexIndex2
() const { return m_vertexIndex2; }
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp
218
nextVertex = polygon.vertexAt(thisEdge.
vertexIndex2
());
221
thisVertex = polygon.vertexAt(thisEdge.
vertexIndex2
());
222
nextVertex = polygon.vertexAt(thisEdge.nextEdge().
vertexIndex2
());
Completed in 3324 milliseconds