Wildmeshing Toolkit
Loading...
Searching...
No Matches
to_points.hpp
Go to the documentation of this file.
1#pragma once
2
3
4#include <string>
5#include <memory>
6
7namespace wmtk {
8 class Mesh;
9 class PointMesh;
10 namespace attribute {
11 class MeshAttributeHandle;
12 }
13}
14
15namespace wmtk::components {
16
18{
19public:
20 bool add_box;
21 double box_scale;
24 double min_dist;
26};
27
28std::shared_ptr<PointMesh> to_points(
29 const Mesh& mesh,
30 const attribute::MeshAttributeHandle& pts_attr,
31 const ToPtsOptions& options,
32 const std::string& output_pos_attr_name = "vertices");
33
34} // namespace wmtk::components
std::shared_ptr< PointMesh > to_points(const Mesh &mesh, const attribute::MeshAttributeHandle &pts_attr, const ToPtsOptions &options, const std::string &output_pos_attr_name)
Definition to_points.cpp:17