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