LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
print_info.h
1
10#ifndef INCGa0ec4da7c53444cbb215ff2415c2b3c5
11#define INCGa0ec4da7c53444cbb215ff2415c2b3c5
12
13#include <lf/mesh/mesh.h>
14
15namespace lf::mesh::utils {
16
29void PrintInfo(std::ostream& o, const lf::mesh::Mesh& mesh, int ctrl = 11);
30
31// Print function for Entity object
47void PrintInfo(std::ostream& stream, const lf::mesh::Entity& e,
48 int output_ctrl = 0);
49
50} // namespace lf::mesh::utils
51
52#endif // INCGa0ec4da7c53444cbb215ff2415c2b3c5
Interface class representing a topological entity in a cellular complex
Definition entity.h:42
Abstract interface for objects representing a single mesh.
Contains helper functions and classes that all operate on the interface classes defined in lf::mesh.
void PrintInfo(std::ostream &o, const lf::mesh::Mesh &mesh, int ctrl)
Definition print_info.cc:18