Make sure to add enough wiggle room when MaxError is very large.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16024
This commit is contained in:
Jeff Young 2023-11-04 23:11:16 +00:00
parent 19e309d2d2
commit 1df5d9c48c
1 changed files with 3 additions and 3 deletions

View File

@ -1734,9 +1734,9 @@ void ZONE_FILLER::buildThermalSpokes( const ZONE* aZone, PCB_LAYER_ID aLayer,
zoneBB.Inflate( std::max( bds.GetBiggestClearanceValue(), aZone->GetLocalClearance() ) );
// Is a point on the boundary of the polygon inside or outside? This small epsilon lets
// us avoid the question.
int epsilon = KiROUND( pcbIUScale.IU_PER_MM * 0.04 ); // about 1.5 mil
// Is a point on the boundary of the polygon inside or outside? The boundary may be off by
// MaxError, and we add 1.5 mil for some wiggle room.
int epsilon = KiROUND( bds.m_MaxError + pcbIUScale.IU_PER_MM * 0.038 ); // 1.5 mil
for( PAD* pad : aSpokedPadsList )
{