mpri-graphics-project/Mesh.hpp

32 lines
816 B
C++

/**
* Defines a mesh, ready to be OpenGL-rendered
**/
#include <vector>
#include <unordered_map>
#include <cstddef> // size_t
#include "common_structures.hpp"
class Mesh {
public:
Mesh();
/// Adds a fresh vertice at `pt`, and returns its ID for further use
size_t add_vertice(const Point& pt);
/// Creates a new face out of the three given point IDs
void add_face(const Face& face);
void add_face(size_t f1, size_t f2, size_t f3);
/// Gets the various vertices
const std::vector<Point>& get_vertices() const;
/// Gets the various faces
const std::vector<Face>& get_faces() const;
private:
std::vector<Point> vertices;
std::unordered_map<Point, size_t> rev_vertices;
std::vector<Face> faces;
};