Mercurial > hg > Members > kono > Cerium
view old/simple_pack/vertex.h @ 772:e53ae444ac6f
Test/property_chain is work
author | hiroki@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Mon, 15 Feb 2010 13:33:29 +0900 |
parents | 735f76483bb2 |
children |
line wrap: on
line source
#ifndef INCLUDE_VERTEX #define INCLUDE_VERTEX class Vertex { public: float x,y,z,tex_x,tex_y; Vertex(float tmp_x, float tmp_y, float tmp_z,float tmp_tex_x, float tmp_tex_y); }; #endif