1 #ifndef DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
2 #define DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
26 template<
typename Coordinate,
typename Corners,
typename Normals>
27 void write(
const Projection<Coordinate>& projection,
28 const Corners& corners,
29 const Normals& normals,
38 template<
typename Coordinate,
typename Corners,
typename Normals>
39 void write(
const Projection<Coordinate>& projection,
40 const Corners& corners,
41 const Normals& normals,
42 const std::string& filename);
52 template<
typename Coordinate,
typename Corners,
typename Normals>
53 void print(
const Projection<Coordinate>& projection,
54 const Corners& corners,
55 const Normals& normals);
Definition: gridglue.hh:30
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