Mercurial > hg > Game > Cerium
diff TaskManager/Test/simple_pack/vertex.cpp @ 53:0c8ae614d421
Initial revision
author | chiaki |
---|---|
date | Fri, 15 Feb 2008 20:58:50 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TaskManager/Test/simple_pack/vertex.cpp Fri Feb 15 20:58:50 2008 +0900 @@ -0,0 +1,11 @@ +#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; +}