Files
CGR3D-Eind/Meinkraft/Vertex.h
T
2016-06-08 10:55:07 +02:00

25 lines
380 B
C++

#pragma once
class Vertex
{
public:
Vertex(float x, float y, float z, float nx, float ny, float nz, float tx, float ty);
~Vertex();
float x;
float y;
float z;
float normalX;
float normalY;
float normalZ;
float texX;
float texY;
Vertex operator/(float &other);
Vertex operator*(Vertex &other);
Vertex operator*(float &other);
Vertex operator+(Vertex &other);
};