Corrected an error in which DRC rules for width of material drawn
at a 45 degree angle will shadow the DRC rule for the material drawn orthogonally (that is, the DRC rule for the distance between orthogonal shapes will be eliminated from the rule deck).
This commit is contained in:
parent
8b34aa78a9
commit
9184ccd395
|
|
@ -4020,6 +4020,11 @@ drcTechFinalStyle(style)
|
||||||
if (!(next->drcc_flags & DRC_OUTSIDE) &&
|
if (!(next->drcc_flags & DRC_OUTSIDE) &&
|
||||||
(dp->drcc_flags & DRC_OUTSIDE)) continue;
|
(dp->drcc_flags & DRC_OUTSIDE)) continue;
|
||||||
}
|
}
|
||||||
|
if (dp->drcc_flags & DRC_SPLITTILE)
|
||||||
|
{
|
||||||
|
if (!(next->drcc_flags & DRC_SPLITTILE)) continue;
|
||||||
|
}
|
||||||
|
else if (next->drcc_flags & DRC_SPLITTILE) continue;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue