MeshCellCriteria_3::Cell_handle
|
|
Handle type for the cells of the
triangulation. Must match the Cell_handle type in the
triangulation type used by the mesh generation function.
|
|
MeshCellCriteria_3::Cell_quality
|
|
Type representing the quality of a
cell. Must be a model of CopyConstructible and
LessThanComparable. Between two cells, the one which has the lower
quality must have the lower Cell_quality.
|
|
MeshCellCriteria_3::Is_cell_bad
|
|
Type representing if a cell is bad or not. Must
be convertible to bool. If it converts to true then the cell is bad, otherwise
the cell is good with regard to the criteria.
In addition, an object of this type must contain an object of type
Cell_quality if it represents
a bad cell. Cell_quality must be accessible by operator*().
Note that boost::optional<Cell_quality> is a natural model of this concept.
|