CGAL 5.4.1 - 3D Mesh Generation
|
The Delaunay refinement process involved in the template functions make_mesh_3()
and refine_mesh_3()
is guided by a set of elementary refinement criteria that concern either mesh tetrahedra or surface facets. The concept MeshFacetCriteria_3
describes the types that handle the refinement criteria for surface facets.
Types | |
typedef unspecified_type | Facet |
Type for the facets of the triangulation. More... | |
typedef unspecified_type | Cell_handle |
Handle type for the cells of the triangulation. More... | |
typedef unspecified_type | Facet_quality |
Type representing the quality of a facet. More... | |
typedef unspecified_type | Is_facet_bad |
Type representing if a facet is bad or not. More... | |
Operations | |
Is_facet_bad | operator() (const Tr &tr, Facet f) |
Returns the Is_facet_bad value of the facet f , which lives in the triangulation tr . More... | |
Handle type for the cells of the triangulation.
Must match the Cell_handle
type in the triangulation type used by the mesh generation function.
Type for the facets of the triangulation.
Must match the Facet
type in the triangulation type used by the mesh generation function.
Type representing the quality of a facet.
Must be a model of CopyConstructible and LessThanComparable. Between two facets, the one which has the lower quality must have the lower Facet_quality
.
Type representing if a facet is bad or not.
This type must be convertible to bool
. If it converts to true
then the facet is bad, otherwise the facet is good with regard to the criteria.
In addition, an object of this type must contain an object of type Facet_quality
if it represents a bad facet. Facet_quality
must be accessible by operator*()
. Note that boost::optional<Facet_quality>
is a natural model of this concept.
Is_facet_bad MeshFacetCriteria_3::operator() | ( | const Tr & | tr, |
Facet | f | ||
) |
Returns the Is_facet_bad
value of the facet f
, which lives in the triangulation tr
.
The type Tr
must be identical to the triangulation type used by the mesh generation function.