Corrected a scaling error in the post-order reading routine. The

routine attempts to rescale the contents of the top-level cell after
moving forward in the GDS to find a cell that was used before it was
defined, if reading that cell caused the scale to change.  However,
the numerator and denominator were reversed, causing the scaling to
be the inverse of what it should have been.
This commit is contained in:
Tim Edwards 2020-12-08 20:38:33 -05:00
parent a78b459303
commit 0429d94e1c
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.93
8.3.94

View File

@ -666,7 +666,7 @@ calmaElementSref(filename)
scalen = 1;
scaled = cifCurReadStyle->crs_multiplier / crsMultiplier;
}
CIFScalePlanes(scalen, scaled, cifCurReadPlanes);
CIFScalePlanes(scaled, scalen, cifCurReadPlanes);
}
}
else