Wildmeshing Toolkit
MeshReader.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <vector>
3 #include "read_mesh.hpp"
4 
5 namespace wmtk {
6 
7 class Mesh;
8 
9 std::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
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