Updated the version to go along with the merge of pull request

the existing coding style.
This commit is contained in:
Tim Edwards 2021-11-17 09:12:47 -05:00
parent 7083d1904c
commit 73bad08457
2 changed files with 17 additions and 15 deletions

View File

@ -1 +1 @@
8.3.228
8.3.229

View File

@ -965,10 +965,10 @@ defNetGeometryFunc(tile, plane, defdata)
if (routeWidth == 0) routeWidth = h;
extlen = 0;
if(defdata->specialmode == DO_REGULAR)
if (defdata->specialmode == DO_REGULAR)
{
x1 = x1 + (routeWidth/2*oscale);
x2 = x2 - (routeWidth/2*oscale);
x1 = x1 + (routeWidth / 2 * oscale);
x2 = x2 - (routeWidth / 2 * oscale);
}
}
else /* vertical orientation */
@ -981,10 +981,10 @@ defNetGeometryFunc(tile, plane, defdata)
if (routeWidth == 0) routeWidth = w;
extlen = 0;
if(defdata->specialmode == DO_REGULAR)
if (defdata->specialmode == DO_REGULAR)
{
y1 = y1 + (routeWidth/2*oscale);
y2 = y2 - (routeWidth/2*oscale);
y1 = y1 + (routeWidth / 2 * oscale);
y2 = y2 - (routeWidth / 2 * oscale);
}
}
}
@ -1993,8 +1993,10 @@ defComponentFunc(cellUse, defdata)
fprintf(f, " - %s %s\n + PLACED ( %.10g %.10g ) %s ;\n",
cellUse->cu_id, nameroot,
(float)(cellUse->cu_bbox.r_xbot - cellUse->cu_def->cd_bbox.r_ll.p_x) * oscale,
(float)(cellUse->cu_bbox.r_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y) * oscale,
(float)(cellUse->cu_bbox.r_xbot - cellUse->cu_def->cd_bbox.r_ll.p_x)
* oscale,
(float)(cellUse->cu_bbox.r_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y)
* oscale,
defTransPos(&cellUse->cu_transform));
return 0; /* Keep the search going */