Specifies the type of geometry primitives.
Syntax
Members
Member | Value | Description |
LINE_LOOP | 2 | Vertices define a connected group of line segments from the first vertex to the last. |
LINE_STRIP | 3 | Vertices define a connected group of line segments from the first vertex to the last, then back to the first. |
LINES | 1 | Each pair of vertices is an independent line segment. |
POINTS | 0 | Each vertex is a single point. |
POLYGON | 9 | Vertices define a single, convex polygon. |
QUAD_STRIP | 8 | Vertices define a connected group of quadrilaterals. One quadrilateral is defined for each pair of vertices presented after the first pair. Vertices 2n 1, 2n, 2n + 2, and 2n + 1 define quadrilateral n. N quadrilaterals are drawn. |
QUADS | 7 | Each group of four vertices is an independent quadrilateral. |
TRIANGLE_FAN | 6 | Vertices define a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. Vertices 1, n + 1, and n + 2 define triangle n. N 2 triangles are drawn. |
TRIANGLE_STRIP | 5 | Vertices define a connected group of triangles. One triangle is defined for each vertex presented after the first two vertices. For odd n, vertices n, n + 1, and n + 2 define triangle n. For even n, vertices n + 1, n, and n + 2 define triangle n. N 2 triangles are drawn. |
TRIANGLES | 4 | Each triplet of vertices is an independent triangle. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ImageGear.Vector.ImGearVectGeometryType
See Also