Merge pull request #2463 from muxanickms/topic/degenerate_area_fix

Degenerate triangles with small area removing fix
pull/2464/head^2
Kim Kulling 2019-05-16 23:30:07 +02:00 committed by GitHub
commit 9740c043c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -228,6 +228,7 @@ bool FindDegeneratesProcess::ExecuteOnMesh( aiMesh* mesh) {
if ( area < 1e-6 ) {
if ( mConfigRemoveDegenerates ) {
remove_me[ a ] = true;
++deg;
goto evil_jump_outside;
}