#ifndef O3D_MESH_H
#define O3D_MESH_H
#include <vector>
#include <array>
#include <iterator>
#include "o3d/vertex.h"
namespace engine::o3d {
class Mesh {
public:
static Mesh cube(); // this function should not be in this file
std::vector<Vertex3> pts;
std::vector<std::array<int, 3>> faces;
Mesh(std::vector<Vertex3> pts, std::vector<std::array<int, 3>> faces);
};
}
#endif // O3D_MESH_H