HGamer3D-Ogre-Binding-0.1.8: Library to enable 3D game development for Haskell - Ogre Bindings

Safe HaskellSafe-Infered

HGamer3D.Bindings.Ogre.EnumRenderOperationOperationType

Documentation

data EnumRenderOperationOperationType Source

Constructors

OT_POINT_LIST

A list of points, 1 vertex per point.

OT_LINE_LIST

A list of lines, 2 vertices per line.

OT_LINE_STRIP

A strip of connected lines, 1 vertex per line plus 1 start vertex.

OT_TRIANGLE_LIST

A list of triangles, 3 vertices per triangle.

OT_TRIANGLE_STRIP

A strip of triangles, 3 vertices for the first triangle, and 1 per triangle after that.

OT_TRIANGLE_FAN

A fan of triangles, 3 vertices for the first triangle, and 1 per triangle after that.