#ifndef GEOMETRY_H #include "point.h" #include struct Face { unsigned int vertIndex[3]; }; struct Mesh { std::vector verts; std::vector faces; }; #define GEOMETRY_H #endif