Allow DP meanders to (mostly) fit on adjacent segments.
This commit is contained in:
parent
943c5fea59
commit
8d76e4e171
|
@ -446,7 +446,7 @@ bool DP_MEANDER_PLACER::CheckFit( MEANDER_SHAPE* aShape )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
int w = aShape->Width();
|
int w = aShape->Width();
|
||||||
int clearance = w + m_settings.m_spacing;
|
int clearance = w + w * 3;
|
||||||
|
|
||||||
return m_result.CheckSelfIntersections( aShape, clearance );
|
return m_result.CheckSelfIntersections( aShape, clearance );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue