An additional change to remove the formatting for the antenna area

output values, which were set to format according to database
distance precision (which is not the same as area).
This commit is contained in:
Tim Edwards 2020-06-13 11:15:33 -04:00
parent 95d1dfddc3
commit bdf684dafe
1 changed files with 4 additions and 6 deletions

View File

@ -1358,13 +1358,11 @@ lefWriteMacro(def, f, scale, hide)
if (ispwrrail == FALSE)
{
if (antgatearea > 0)
fprintf(f, IN1 "ANTENNAGATEAREA " FP " ;\n",
lefPrint(lc.oscale * lc.oscale
* (float)antgatearea));
fprintf(f, IN1 "ANTENNAGATEAREA %f ;\n",
lc.oscale * lc.oscale * (float)antgatearea);
if (antdiffarea > 0)
fprintf(f, IN1 "ANTENNADIFFAREA " FP " ;\n",
lefPrint(lc.oscale * lc.oscale
* (float)antdiffarea));
fprintf(f, IN1 "ANTENNADIFFAREA %f ;\n",
lc.oscale * lc.oscale * (float)antdiffarea);
}
lc.needHeader = FALSE;
}