P3t3: add all_cell_handles() and all_cell_handles()

This commit is contained in:
Laurent Rineau 2025-05-21 17:44:37 +02:00
parent 34cdf58eea
commit 5ccbe16a1e
1 changed files with 10 additions and 0 deletions

View File

@ -1745,6 +1745,11 @@ public:
return _tds.cells_end();
}
auto all_cell_handles() const
{
return _tds.cell_handles();
}
All_vertices_iterator all_vertices_begin() const {
return _tds.vertices_begin();
}
@ -1752,6 +1757,11 @@ public:
return _tds.vertices_end();
}
auto all_vertex_handles() const
{
return _tds.vertex_handles();
}
All_edges_iterator all_edges_begin() const {
return _tds.edges_begin();
}