Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_render/vertex.cpp @ 61:6bc72fde6615
*** empty log message ***
author | gongo |
---|---|
date | Sat, 16 Feb 2008 20:19:31 +0900 |
parents | 3f68b2ef4fb0 |
children | 811ffebd8deb |
line wrap: on
line source
#include <iostream> #include "vertex.h" using namespace std; Vertex::Vertex(float tmp_x,float tmp_y, float tmp_z,float tmp_tex_x,float tmp_tex_y) { x = tmp_x; y = tmp_y; z = tmp_z; tex_x = tmp_tex_x; tex_y = tmp_tex_y; }