You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// edge swapped on the other side of the hull (rare); fix the halfedge referenceif ( hbl == INVALID_INDEX ) {
std::size_t e = hull_start;
do {
if ( hull_tri[ e ] == bl ) {
hull_tri[ e ] = a;
break;
}
e = hull_next[ e ];
// add bug check 20230706 if ( e == hull_next[ e ] ) {
break;
}
// add bug check 20230706
} while ( e != hull_start );
}