Enum VisualServerSingleton.PrimitiveType
enum PrimitiveType
: int { ... }
Enum members
Name | Description |
primitiveLineLoop
|
Primitive to draw consists of a line loop (a line strip with a line between the last and the first vertex).
|
primitiveLines
|
Primitive to draw consists of lines.
|
primitiveLineStrip
|
Primitive to draw consists of a line strip from start to end.
|
primitiveMax
|
Represents the size of the primitivetype enum.
|
primitivePoints
|
Primitive to draw consists of points.
|
primitiveTriangleFan
|
Primitive to draw consists of a triangle strip (the last 2 vertices are always combined with the first to make a triangle).
|
primitiveTriangles
|
Primitive to draw consists of triangles.
|
primitiveTriangleStrip
|
Primitive to draw consists of a triangle strip (the last 3 vertices are always combined to make a triangle).
|