Wildmeshing Toolkit
Loading...
Searching...
No Matches
delaunay.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <memory>
4
5
6namespace wmtk {
7 class Mesh;
8 class PointMesh;
9 namespace attribute {
10 class MeshAttributeHandle;
11 }
12}
13namespace wmtk::components {
14
15std::shared_ptr<Mesh> delaunay(
16 const PointMesh& point_cloud,
17 const attribute::MeshAttributeHandle& pts_attr,
18 const std::string& output_pos_attr_name = "vertices");
19
20} // 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