struct geom::Graph

#include <Graphs.h>

struct Graph {
    // fields

    std::vector<glm::vec3> vertices;
    std::vector<std::vector<bool>> edges;
};