Wildmeshing Toolkit
MeshReader.cpp
Go to the documentation of this file.
1 #include "MeshReader.hpp"
2 #include "read_mesh.hpp"
3 
4 
5 #include <wmtk/utils/Logger.hpp>
6 
7 #include <memory>
8 
9 namespace wmtk {
10 
11 std::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
Definition: Accessor.hpp:6
std::shared_ptr< Mesh > read_mesh(const std::filesystem::path &filename, const bool ignore_z_if_zero, const std::vector< std::string > &tetrahedron_attributes)
Definition: MeshReader.cpp:11