comparison old/simple_render/vertex.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/vertex.h@9b96b190cb73
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
1 #ifndef INCLUDE_VERTEX
2 #define INCLUDE_VERTEX
3
4 class Vertex {
5 public:
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 };
10
11 #endif