Mercurial > hg > Members > kono > Cerium
comparison TaskManager/Test/simple_render/vertex.h @ 73:811ffebd8deb
*** empty log message ***
author | gongo |
---|---|
date | Mon, 18 Feb 2008 03:34:35 +0900 |
parents | 3f68b2ef4fb0 |
children | 9b96b190cb73 |
comparison
equal
deleted
inserted
replaced
72:cf36120bc158 | 73:811ffebd8deb |
---|---|
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); | |
7 | 9 |
8 Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y); | 10 void set(float, float, float, float, float); |
9 }; | 11 }; |
10 | 12 |
11 #endif | 13 #endif |