Add doc for storage policies

This commit is contained in:
Andreas Fabri 2025-04-24 08:11:39 +01:00
parent f147e0f0cc
commit eef2bea7b1
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace CGAL {
/*!
\ingroup PkgTriangulationsRef
A tag class to indicate that mirror indices are not stored in full cells.
*/
class TDS_full_cell_mirror_storage_policy
{};
}

View File

@ -0,0 +1,11 @@
namespace CGAL {
/*!
\ingroup PkgTriangulationsRef
A tag class to indicate that mirror indices are stored in full cells.
\precondition The dimension is not larger than 127.
*/
class TDS_full_cell_mirror_storage_policy
{};
}