missing is_marked

This commit is contained in:
Laurent Rineau 2025-09-19 16:40:12 +02:00
parent 489a9675dd
commit 9d08d4087d
1 changed files with 1 additions and 1 deletions

View File

@ -2257,7 +2257,7 @@ private:
if(facets_of_border.count(Facet{circ, face_index}) > 0) { if(facets_of_border.count(Facet{circ, face_index}) > 0) {
const auto other_vertex_index = 6 - index_va - index_vb - face_index; const auto other_vertex_index = 6 - index_va - index_vb - face_index;
const auto other_vertex = circ->vertex(other_vertex_index); const auto other_vertex = circ->vertex(other_vertex_index);
if(other_vertex->ccdt_3_data().is_marked(Vertex_marker::CAVITY)) { if(is_marked(other_vertex, Vertex_marker::CAVITY)) {
vertex_above = circ->vertex(other_vertex_index); vertex_above = circ->vertex(other_vertex_index);
break; break;
} }