Handling Primitives

So, what are primitives? Simply put primitives are basic geometric entities such as points, lines and triangles.

You will be using thousands and thousands of these primitives to make your games, so it is important to know how they work. Before we get into specific primitive types, we need to talk about a few OpenGL functions that you will be using often for working with primitives. The first is GL.Begin. The function has the following prototype:

void GL.Begin(PrimitiveType mode);

You use GL.Begin to tell OpenGL two things:

  • That you are ready to start drawing
  • The primitive type you want to draw

You specify the primitive type with the PrimitiveType enum. It's values are:

  • PrimitiveType.Points Individual points
  • PrimitiveType.Lines Line segments composed of pairs of vertices
  • PrimitiveType.LineStrip A series of connected lines
  • PrimitiveType.LineLoop A closed loop of connected lines. The last segment is automatically created between the first and last vertices.
  • PrimitiveType.Triangles Single triangles as a triplet of vertices. This is what you will use most often!
  • PrimitiveType.TriangleStrip Series of connected triangles
  • PrimitiveType.TriangleFan Triangle around a common, central vertex
  • PrimitiveType.Quads A quadraletiral (Polygon with 4 vertices)
  • PrimitiveType.QuadStrip A series of connected quadralatirals
  • PrimitiveType.Polygon A convex polygon with an arbitrary number of vertices.

Here is an example of what each primitive would draw like:

PRIMS

Each call to GL.Begin needs to be accompanied by a call to GL.End, the signature of this function looks like:

void GL.End();

GL.End tells OpenGL that you are done drawing the primitive you specified with GL.Begin.

GL.Begin() and GL.End() blocks may not be nested.

Not all OpenGL functions can be used inside a Begin / End block. Calling an invalid function will generate a InvalidOperation error and render nothing.

This is a list of valid functions that can be used between Begin and End:

  • GL.Vertex*()
  • GL.Color*()
  • GL.SecondaryColor*()
  • GL.Index*()
  • GL.Normal*()
  • GL.TexCoord*()
  • GL.MultiTexCoord*()
  • GL.FogCoord*()
  • GL.ArrayElement()
  • GL_EvalCoord*()
  • GL.EvalPoint*()
  • GL.Material*()
  • GL.EdgeFlag*()
  • GL.CallList*()
  • GL.CallLists*()

Why do most of those functions end in an asterisk? Because they have multiple variations. Each variation has the asterisk replaced by a number, that number signifies how many arguments the function takes.

For example, GL.Vertex has the following variations:

void GL.Vertex2(float, float);
void GL.Vertex3(float, float, float);
void GL.Vertex4(float, float, float, float)

results matching ""

    No results matching ""