Geometry, graphs and interpolation.
Header-only, no dependency.
geometry.hpp— triangulation, Delaunaygraph.hpp— minimum spanning tree, BFS, connected componentsinterpolation.hpp— linear and cubic
#include "graph.hpp"
Graph<int> g;
g.addEdge(0, 1, 2.f);
auto tree = g.mst();