Wildmeshing Toolkit
Loading...
Searching...
No Matches
MeshReader.cpp
Go to the documentation of this file.
1#include "MeshReader.hpp"
2#include "read_mesh.hpp"
3
4
6
7#include <memory>
8
9namespace wmtk {
10
11std::shared_ptr<Mesh> read_mesh(
12 const std::filesystem::path& filename,
13 const bool ignore_z_if_zero,
14 const std::vector<std::string>& tetrahedron_attributes)
15{
16 return io::read_mesh(filename, ignore_z_if_zero, tetrahedron_attributes);
17}
18
19} // namespace wmtk
std::shared_ptr< Mesh > read_mesh(const std::filesystem::path &filename, FileType file_type)
Definition read_mesh.cpp:35
std::shared_ptr< Mesh > read_mesh(const std::filesystem::path &filename, const bool ignore_z_if_zero, const std::vector< std::string > &tetrahedron_attributes)