comparison Renderer/test_render/vertex.cpp @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
children
comparison
equal deleted inserted replaced
282:ef061be0baff 283:55ea4465b1a2
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 }