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:
parent
f4c5ec3a78
commit
31ba6eeba3
|
|
@ -1129,8 +1129,11 @@ defNetGeometryFunc(tile, plane, defdata)
|
||||||
midlinex2 = (r.r_xtop + r.r_xbot);
|
midlinex2 = (r.r_xtop + r.r_xbot);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
orient = GEO_EAST;
|
||||||
midlinex2 = (r.r_ytop + r.r_ybot);
|
midlinex2 = (r.r_ytop + r.r_ybot);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Find the route orientation and centerline endpoint coordinates */
|
/* Find the route orientation and centerline endpoint coordinates */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue