Next is the function call glBegin( GL_LINE_STRIP ).
Drawing of primitives in OpenGL is accomplished by identifying the primitive and then specifying the information necessary to display it. This function says that we are about to specify a line strip.
This is done by listing vertices, each of which is connected to the previous one by a straight line.
Other primitives exist; we'll see one more shortly.