Mercurial > hg > Members > kono > Cerium
comparison TaskManager/Test/simple_render/vertex.h @ 85:9b96b190cb73
*** empty log message ***
author | gongo |
---|---|
date | Wed, 27 Feb 2008 04:25:04 +0900 |
parents | 811ffebd8deb |
children |
comparison
equal
deleted
inserted
replaced
84:c2e178b3415f | 85:9b96b190cb73 |
---|---|
1 #ifndef INCLUDE_VERTEX | 1 #ifndef INCLUDE_VERTEX |
2 #define INCLUDE_VERTEX | 2 #define INCLUDE_VERTEX |
3 | 3 |
4 class Vertex { | 4 class Vertex { |
5 public: | 5 public: |
6 float x,y,z,tex_x,tex_y; | 6 float x,y,z,tex_x,tex_y; |
7 | |
8 Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y); | |
9 | 7 |
10 void set(float, float, float, float, float); | 8 Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y); |
11 }; | 9 }; |
12 | 10 |
13 #endif | 11 #endif |