comparison old/simple_render/vertex.cpp @ 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.cpp@9b96b190cb73
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
1 #include <iostream>
2 #include "vertex.h"
3 using namespace std;
4
5 Vertex::Vertex(float tmp_x,float tmp_y, float tmp_z,float tmp_tex_x,float tmp_tex_y) {
6 x = tmp_x;
7 y = tmp_y;
8 z = tmp_z;
9 tex_x = tmp_tex_x;
10 tex_y = tmp_tex_y;
11 }