Allow DP meanders to (mostly) fit on adjacent segments.

This commit is contained in:
Alex Shvartzkop 2024-02-20 04:09:38 +03:00 committed by dsa-t
parent 943c5fea59
commit 8d76e4e171
1 changed files with 1 additions and 1 deletions

View File

@ -446,7 +446,7 @@ bool DP_MEANDER_PLACER::CheckFit( MEANDER_SHAPE* aShape )
return false;
int w = aShape->Width();
int clearance = w + m_settings.m_spacing;
int clearance = w + w * 3;
return m_result.CheckSelfIntersections( aShape, clearance );
}