CGAL: fix potential deadlock in circulator loop on border-halfedge faces in Triangulate()

This commit is contained in:
Josef Wienerroither
2026-09-06 07:11:00 +02:00
committed by Thomas Krijnen
parent d27481538b
commit 2ef49d6311
@@ -507,8 +507,8 @@ void ifcopenshell::geometry::CgalShape::Triangulate(ifcopenshell::geometry::Sett
if ((fn2 * facet_normal) >= *smooth_treshold) {
normal_accum = normal_accum + fn2;
}
++vh;
}
++vh;
} while (vh != vh_begin);
}
}