add missing files

This commit is contained in:
Sébastien Loriot 2020-05-27 18:41:56 +02:00
parent f386790eaa
commit e3c5937b8e
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/*!
\ingroup PkgTetrahedralRemeshingConcepts
\cgalConcept
\cgalRefines MeshCellBase_3
Cell base concept to be used in the triangulation type given to the function `CGAL::tetrahedral_isotropic_remeshing()`.
\cgalHasModel All models of `CGAL::Tetrahedral_remeshing::Remeshing_cell_base_3`.
*/
class RemeshingCellBase_3
{};

View File

@ -0,0 +1,13 @@
/*!
\ingroup PkgTetrahedralRemeshingConcepts
\cgalConcept
\cgalRefines MeshVertexBase_3
Vertex base concept to be used in the triangulation type given to the function `CGAL::tetrahedral_isotropic_remeshing()`.
\cgalHasModel All models of `CGAL::Tetrahedral_remeshing::Remeshing_vertex_base_3`.
*/
class RemeshingVertexBase_3
{};