Corrected an error in the "cifarea" rule that had previously been
fixed for "cifwidth" and "cifspacing", in which the rule distance is incorrectly multiplied by the expander (in the case of area, multiplied by the expander squared).
This commit is contained in:
parent
6b8239e258
commit
63109229f4
|
|
@ -1124,7 +1124,7 @@ drcCifArea(argc, argv)
|
|||
}
|
||||
|
||||
scalefactor = drcCifStyle->cs_scaleFactor;
|
||||
centiarea *= (drcCifStyle->cs_expander * drcCifStyle->cs_expander);
|
||||
// centiarea *= (drcCifStyle->cs_expander * drcCifStyle->cs_expander);
|
||||
dpnext = drcCifRules[thislayer][DRC_CIF_SPACE];
|
||||
dpnew = (DRCCookie *) mallocMagic((unsigned) (sizeof (DRCCookie)));
|
||||
drcCifAssign(dpnew, centihorizon, dpnext, &CIFSolidBits, &CIFSolidBits,
|
||||
|
|
|
|||
Loading…
Reference in New Issue