Fixed refinement relationships of vertex/face concepts in alpha shapes 2

This commit is contained in:
Mael Rouxel-Labbé 2017-05-02 16:24:05 +02:00
parent d67163dece
commit 08d25006de
2 changed files with 12 additions and 5 deletions

View File

@ -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:

View File

@ -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: