};
-// write preamble
+ // write preamble
if (ucd_flags.write_preamble)
{
// block this to have local
};
+
#if deal_II_dimension == 1
template <>
#endif
+
template <int dim>
unsigned int GridOut::n_boundary_faces (const Triangulation<dim> &tria) const
{
};
+
#if deal_II_dimension == 1
template <>
#endif
+
template <int dim>
void GridOut::write_ucd_faces (const Triangulation<dim> &tria,
const unsigned int starting_index,
};
+
template <int dim>
void GridOut::write_gnuplot (const Triangulation<dim> &tria,
ostream &out)
AssertThrow (out, ExcIO());
};
+
+
struct LineEntry
{
Point<2> first;
{}
};
+
+
template <int dim>
void GridOut::write_eps (const Triangulation<dim> &tria,
ostream &out)
};
-// find out minimum and maximum x and
+ // find out minimum and maximum x and
// y coordinates to compute offsets
// and scaling factors
double x_min = tria.begin_active_line()->vertex(0)(0);
y_min - y_max));
-// now write preamble
+ // now write preamble
if (true)
{
// block this to have local
};
+
template <int dim>
void GridOut::write (const Triangulation<dim> &tria,
ostream &out,
};
+
// explicit instantiations. note that write instantiates all the other
// functions as needed
-template void GridOut::write (const Triangulation<deal_II_dimension> &, ostream &, OutputFormat);
+template void GridOut::write (const Triangulation<deal_II_dimension> &,
+ ostream &,
+ OutputFormat);