Wildmeshing Toolkit
delaunay_2d.cpp
Go to the documentation of this file.
1 #include "delaunay_2d.hpp"
2 #include <wmtk/Types.hpp>
3 #include "delaunay_geogram.hpp"
4 
5 
7 
8 std::tuple<Eigen::MatrixXd, Eigen::MatrixXi> delaunay_2d(Eigen::Ref<const RowVectors2d> points)
9 {
10  return delaunay_geogram(points);
11 }
12 
13 } // namespace wmtk::components::internal
std::tuple< Eigen::MatrixXd, Eigen::MatrixXi > delaunay_geogram(Eigen::Ref< const Eigen::MatrixXd > points)
std::tuple< Eigen::MatrixXd, Eigen::MatrixXi > delaunay_2d(Eigen::Ref< const RowVectors2d > points)
Definition: delaunay_2d.cpp:8