UGDK  0.5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
vertex.h
Go to the documentation of this file.
1 #ifndef UGDK_STRUCTURE_VERTEX_H_
2 #define UGDK_STRUCTURE_VERTEX_H_
3 
4 namespace ugdk {
5 namespace structure {
6 
7 struct VertexXYUV {
8  float x;
9  float y;
10  float u;
11  float v;
12 
13  void set_xyuv(float _x, float _y, float _u, float _v) {
14  x = _x;
15  y = _y;
16  u = _u;
17  v = _v;
18  }
19 };
20 
21 } // namespace structure
22 } // namespace ugdk
23 
24 #endif // UGDK_STRUCTURE_VERTEX_H_
float x
Definition: vertex.h:8
Definition: animation.h:11
void set_xyuv(float _x, float _y, float _u, float _v)
Definition: vertex.h:13
float y
Definition: vertex.h:9
float v
Definition: vertex.h:11
float u
Definition: vertex.h:10
Definition: vertex.h:7