Ensure bad polys get simplified before triangulation

If the poly set is self-intersecting, the triangulation may be
problematic and the full set needs simplification before.  We don't do
this uniformly because the simplification can be a slowdown if it is not
needed

Fixes https://gitlab.com/kicad/code/kicad/issues/12806
This commit is contained in:
Seth Hillbrand 2022-11-28 10:35:55 -08:00
parent 6510afe699
commit fcf44091d2
1 changed files with 3 additions and 0 deletions

View File

@ -2710,6 +2710,9 @@ void SHAPE_POLY_SET::CacheTriangulation( bool aPartition )
bool triangulationValid = false;
int pass = 0;
if( polySet.IsSelfIntersecting() )
polySet.Simplify( PM_FAST );
while( polySet.OutlineCount() > 0 )
{
if( !dest.empty() && dest.back()->GetTriangleCount() == 0 )