Wildmeshing Toolkit
Loading...
Searching...
No Matches
SimplifySegments.hpp
1#pragma once
2
3#include <wmtk/Types.hpp>
4#include <wmtk/envelope/Envelope.hpp>
5
6#include <cstddef>
7
8namespace wmtk::utils {
9
60size_t simplify_segments(
61 MatrixXd& V,
62 MatrixXi& E,
63 const SampleEnvelope& envelope,
64 bool use_link_condition = true,
65 std::vector<int>* surviving_edges = nullptr);
66
67} // namespace wmtk::utils