dune-grid-glue 2.8.0
Loading...
Searching...
No Matches
projectionwriter.hh
Go to the documentation of this file.
1#ifndef DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
2#define DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
3
4#include <iostream>
5#include <string>
6
8
9namespace Dune {
10namespace GridGlue {
11
26template<typename Coordinate, typename Corners, typename Normals>
27void write(const Projection<Coordinate>& projection,
28 const Corners& corners,
29 const Normals& normals,
30 std::ostream& out);
31
38template<typename Coordinate, typename Corners, typename Normals>
39void write(const Projection<Coordinate>& projection,
40 const Corners& corners,
41 const Normals& normals,
42 const std::string& filename);
52template<typename Coordinate, typename Corners, typename Normals>
53void print(const Projection<Coordinate>& projection,
54 const Corners& corners,
55 const Normals& normals);
56
57} /* namespace GridGlue */
58} /* namespace Dune */
59
61
62#endif
Definition: gridglue.hh:35
void write(const Projection< Coordinate > &projection, const Corners &corners, const Normals &normals, std::ostream &out)
write projection in VTK format
Definition: projectionwriter_impl.hh:84
void print(const Projection< Coordinate > &projection, const Corners &corners, const Normals &normals)
Print information about the projection to std::cout stream.
Definition: projectionwriter_impl.hh:138