1#ifndef DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
2#define DUNE_GRIDGLUE_COMMON_PROJECTIONWRITER_HH
26template<
typename Coordinate,
typename Corners,
typename Normals>
27void write(
const Projection<Coordinate>& projection,
28 const Corners& corners,
29 const Normals& normals,
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);
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