Click or drag to resize

RenderOperationType Enumeration

The rendering operation type to perform.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public enum RenderOperationType
Members
  Member nameValueDescription
PointList1A list of points, 1 vertex per point.
LineList2A list of lines, 2 vertices per line.
LineStrip3A strip of connected lines, 1 vertex per line plus 1 start vertex.
TriangleList4A list of triangles, 3 vertices per triangle.
TriangleStrip5A strip of triangles, 3 vertices for the first triangle, and 1 per triangle after that.
See Also