#ifndef VERTEX_H #define VERTEX_H #include #include "types.h" struct Vertex { Vertex(); Vertex(cfloat x, cfloat y, cfloat z); Vertex(cfloat x, cfloat y, cfloat z, cfloat u, cfloat v); cfloat x, y, z; cfloat u, v; }; typedef std::vector VertexList; #endif /* VERTEX_H */