mirror of https://github.com/CGAL/cgal
29 lines
528 B
C++
29 lines
528 B
C++
|
|
/*!
|
|
\ingroup PkgTriangulation3Concepts
|
|
\cgalConcept
|
|
|
|
The cell base required by the basic triangulation does not need to store any
|
|
geometric information, so only the requirements of the triangulation data
|
|
structure apply.
|
|
|
|
|
|
\cgalRefines{TriangulationDSCellBase_3}
|
|
|
|
\cgalHasModelsBegin
|
|
\cgalHasModels{CGAL::Triangulation_cell_base_3}
|
|
\cgalHasModels{CGAL::Triangulation_cell_base_with_info_3}
|
|
\cgalHasModelsEnd
|
|
|
|
\sa `TriangulationVertexBase_3`
|
|
|
|
*/
|
|
|
|
|
|
class TriangulationCellBase_3 {
|
|
public:
|
|
|
|
|
|
|
|
}; /* end TriangulationCellBase_3 */
|