Enmesh
Loading...
Searching...
No Matches
exportToVTK.h
1#ifndef EXPORT_TO_VTK_H
2#define EXPORT_TO_VTK_H
3
4#include "mesh/mesh.h"
5
6namespace Enmesh {
7
13template <typename T>
14void exportToVTK(const std::string& filename, const Mesh<T>& mesh);
15
16} // namespace Enmesh
17
18#include "../../src/io/exportToVTK.tpp"
19
20#endif
A class representing a 3D mesh.
Definition mesh.h:29