*/
unsigned int n_extra_curved_line_points;
- /**
- * Based on the vertices of the face and #n_boundary_face_points
- * additional points a tensor product mesh (transformed to the real space)
- * of (#n_boundary_face_points+2)<sup>dim-1</sup> points is plotted on
- * each boundary face.
- *
- * @deprecated Use n_extra_curved_line_points instead, which has
- * a more precise name. For compatibility this is implemented as a
- * reference to n_extra_curved_line_points.
- */
- DEAL_II_DEPRECATED unsigned int &n_boundary_face_points;
-
/**
* Boolean indicating whether or not interior lines should be plotted with
* <tt>n_extra_curved_line_points</tt> line segments.
const bool write_additional_boundary_lines)
: write_cell_numbers(write_cell_numbers)
, n_extra_curved_line_points(n_extra_curved_line_points)
- , n_boundary_face_points(this->n_extra_curved_line_points)
, curved_inner_cells(curved_inner_cells)
, write_additional_boundary_lines(write_additional_boundary_lines)
{}
void
Gnuplot::parse_parameters(ParameterHandler ¶m)
{
- write_cell_numbers = param.get_bool("Cell number");
- n_boundary_face_points = param.get_integer("Boundary points");
+ write_cell_numbers = param.get_bool("Cell number");
+ n_extra_curved_line_points = param.get_integer("Boundary points");
}
const int dim = 2;
const unsigned int n_additional_points =
- gnuplot_flags.n_boundary_face_points;
+ gnuplot_flags.n_extra_curved_line_points;
const unsigned int n_points = 2 + n_additional_points;
// If we need to plot curved lines then generate a quadrature formula to
const int dim = 3;
const unsigned int n_additional_points =
- gnuplot_flags.n_boundary_face_points;
+ gnuplot_flags.n_extra_curved_line_points;
const unsigned int n_points = 2 + n_additional_points;
// If we need to plot curved lines then generate a quadrature formula to
{
deallog << "don't curve anything" << std::endl;
GridOutFlags::Gnuplot flags;
- // check that this really is a reference for the real name
- flags.n_boundary_face_points = 42;
- Assert(flags.n_extra_curved_line_points == 42, ExcInternalError());
flags.n_extra_curved_line_points = 0;
- Assert(flags.n_boundary_face_points == 0, ExcInternalError());
flags.curved_inner_cells = false;
flags.write_additional_boundary_lines = false;
MappingQ<3> m(4);
GridOut go;
GridOutFlags::Gnuplot gof;
- gof.n_boundary_face_points = 6;
+ gof.n_extra_curved_line_points = 6;
go.set_flags(gof);
go.write_gnuplot(triangulation, deallog.get_file_stream(), &m);