Triangle mesh model Use OpenGL to display a 3D model. Use a vertex list and triangle list to keep track of the data. Recall that a vertex has three coordinates, (x,y,z), represented as floats. Also, a triangle has three ints, (a,b,c); each is an index into the array of vertices, […]