view TaskManager/Test/simple_render/vertex.cpp @ 26:3f68b2ef4fb0

*** empty log message ***
author gongo
date Sun, 10 Feb 2008 18:31:48 +0900
parents
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; 
}