* Default: @p{false}.
*/
bool write_cell_numbers;
-
+
/**
* This is the number of
* points on a boundary face,
* number written is
* @p{level.index}.
*/
- bool plot_cell_numbers;
+ bool write_cell_numbers;
/**
* Constructor.
const double line_width = 0.5,
const bool color_lines_on_user_flag = false,
const unsigned int n_boundary_face_points = 2,
- const bool plot_cell_numbers = false);
+ const bool write_cell_numbers = false);
};
/**
const double line_width,
const bool color_lines_on_user_flag,
const unsigned int n_boundary_face_points,
- const bool plot_cell_numbers)
+ const bool write_cell_numbers)
:
EpsFlagsBase(size_type, size, line_width,
color_lines_on_user_flag,
n_boundary_face_points),
- plot_cell_numbers (plot_cell_numbers)
+ write_cell_numbers (write_cell_numbers)
{};
// it is reverse engineered
// from what GNUPLOT uses in
// its output
- if ((dim == 2) && (eps_flags_2.plot_cell_numbers == true))
+ if ((dim == 2) && (eps_flags_2.write_cell_numbers == true))
{
out << ("/R {rmoveto} bind def\n"
"/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont\n"
// finally write the cell numbers
// in 2d, if that is desired
- if ((dim == 2) && (eps_flags_2.plot_cell_numbers == true))
+ if ((dim == 2) && (eps_flags_2.write_cell_numbers == true))
{
out << "(Helvetica) findfont 140 scalefont setfont"
<< std::endl;