Wildmeshing Toolkit
Loading...
Searching...
No Matches
MeshReader.hpp
Go to the documentation of this file.
1#pragma once
2#include <vector>
3#include "read_mesh.hpp"
4
5namespace wmtk {
6
7class Mesh;
8
9std::shared_ptr<Mesh> read_mesh(
10 const std::filesystem::path& filename,
11 const bool ignore_z_if_zero = false,
12 const std::vector<std::string>& tetrahedron_attributes = {});
13
14} // namespace wmtk
std::shared_ptr< Mesh > read_mesh(const std::filesystem::path &filename, const bool ignore_z_if_zero, const std::vector< std::string > &tetrahedron_attributes)