Wildmeshing Toolkit
Loading...
Searching...
No Matches
delaunay.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <wmtk/Mesh.hpp>
4
5namespace wmtk::components {
6
7std::shared_ptr<Mesh> delaunay(
8 const PointMesh& point_cloud,
9 const attribute::MeshAttributeHandle& pts_attr,
10 const std::string& output_pos_attr_name = "vertices");
11
12} // namespace wmtk::components
std::shared_ptr< Mesh > delaunay(const PointMesh &point_cloud, const attribute::MeshAttributeHandle &pts_attr, const std::string &output_pos_attr_name)
Definition delaunay.cpp:68