View difference between Paste ID: AH6QEVus and 5DSgGYEs
SHOW: | | - or go back to the newest paste.
1
glBegin(GL_TRIANGLES);
2
    for (auto &vertex: mesh.vertices) {
3
        glVertex3f(vertex.vertices.x, vertex.vertices.y, vertex.vertices.z);
4
    }
5
    glEnd();