Wildmeshing Toolkit
marching.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <nlohmann/json.hpp>
3 #include <wmtk/Mesh.hpp>
4 
5 #include "MarchingOptions.hpp"
6 
7 namespace wmtk::components {
8 
14 void marching(Mesh& mesh, const MarchingOptions& options);
15 
16 } // namespace wmtk::components
void marching(Mesh &mesh, const MarchingOptions &options)
Perform maching tetrahedra/triangles.
Definition: marching.cpp:11