mirror of https://github.com/CGAL/cgal
Fixed refinement relationships of vertex/face concepts in alpha shapes 2
This commit is contained in:
parent
d67163dece
commit
08d25006de
|
|
@ -3,12 +3,15 @@
|
|||
\ingroup PkgAlphaShape2Concepts
|
||||
\cgalConcept
|
||||
|
||||
\cgalRefines `TriangulationFaceBase_2`
|
||||
The concept `AlphaShapeFace_2` describes the requirements for the base face of an alpha shape.
|
||||
|
||||
\cgalHasModel `CGAL::Alpha_shape_face_base_2`
|
||||
\cgalRefines `TriangulationFaceBase_2`, if the underlying triangulation of the alpha shape is a Delaunay triangulation.
|
||||
\cgalRefines `RegularTriangulationFaceBase_2`, if the underlying triangulation of the alpha shape is a regular triangulation.
|
||||
\cgalRefines `Periodic_2TriangulationFaceBase_2`, if the underlying triangulation of the alpha shape is a periodic triangulation.
|
||||
|
||||
\cgalHasModel `CGAL::Alpha_shape_face_base_2` (templated with the appropriate triangulation face base class).
|
||||
|
||||
*/
|
||||
|
||||
class AlphaShapeFace_2 {
|
||||
public:
|
||||
|
||||
|
|
|
|||
|
|
@ -3,9 +3,13 @@
|
|||
\ingroup PkgAlphaShape2Concepts
|
||||
\cgalConcept
|
||||
|
||||
\cgalRefines `TriangulationVertexBase_2`
|
||||
The concept `AlphaShapeVertex_2` describes the requirements for the base vertex of an alpha shape.
|
||||
|
||||
\cgalHasModel `CGAL::Alpha_shape_vertex_base_2`
|
||||
\cgalRefines `TriangulationVertexBase_2`, if the underlying triangulation of the alpha shape is a Delaunay triangulation.
|
||||
\cgalRefines `RegularTriangulationVertexBase_2`, if the underlying triangulation of the alpha shape is a regular triangulation.
|
||||
\cgalRefines `Periodic_2TriangulationVertexBase_2`, if the underlying triangulation of the alpha shape is a periodic triangulation.
|
||||
|
||||
\cgalHasModel `CGAL::Alpha_shape_vertex_base_2` (templated with the appropriate triangulation vertex base class).
|
||||
*/
|
||||
class AlphaShapeVertex_2 {
|
||||
public:
|
||||
|
|
|
|||
Loading…
Reference in New Issue