Flow Visualisation
VertexGeometry.h
Go to the documentation of this file.
1 //
2 // VertexGeometry.h
3 // flowviz
4 //
5 // Created by Johann Götz on 11.05.15.
6 // Copyright (c) 2015 Johann Götz. All rights reserved.
7 //
8 
9 #ifndef __flowviz__VertexGeometry__
10 #define __flowviz__VertexGeometry__
11 
12 #include <stdio.h>
13 
14 #include "../glm/glm.hpp"
15 
16 
17 namespace objects {
18 
23  {
24  public:
25  VertexGeometry() : vertices(NULL), colors(NULL), uv(NULL) {}
26 
30  unsigned int *indices;
33  int indexCount;
34  };
35 
36 }
37 
38 #endif /* defined(__flowviz__VertexGeometry__) */
int indexCount
number of vertices
Definition: VertexGeometry.h:33
glm::vec4 * uv
list of colors
Definition: VertexGeometry.h:29
Stores all model information.
Definition: VertexGeometry.h:22
glm::vec4 * vertices
Definition: VertexGeometry.h:27
unsigned int * indices
list of uv coordinates
Definition: VertexGeometry.h:30
VertexGeometry()
Definition: VertexGeometry.h:25
int vertexCount
list of indices
Definition: VertexGeometry.h:32
Definition: type_mat2x2.hpp:40
Definition: Arrow.h:16
glm::vec4 * colors
list of vertices
Definition: VertexGeometry.h:28