view TaskManager/Test/test_render/vertex.cpp @ 174:559b48b69b76

getScale()、getTapestry から、span->length に適切なテクスチャの選択に成功
author gongo@localhost.localdomain
date Fri, 12 Dec 2008 12:23:20 +0900
parents 5c194c71eca8
children
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; 
}