Corrected an error introduced with the last push which changes

wire direction on vias during DEF write without changing the
"orient" value, causing Y values to get copied into X positions
in the output.
This commit is contained in:
Tim Edwards 2022-11-09 15:14:53 -05:00
parent f4c5ec3a78
commit 31ba6eeba3
1 changed files with 3 additions and 0 deletions

View File

@ -1129,7 +1129,10 @@ defNetGeometryFunc(tile, plane, defdata)
midlinex2 = (r.r_xtop + r.r_xbot);
}
else
{
orient = GEO_EAST;
midlinex2 = (r.r_ytop + r.r_ybot);
}
}
/* Find the route orientation and centerline endpoint coordinates */