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:
parent
a78b459303
commit
0429d94e1c
|
|
@ -666,7 +666,7 @@ calmaElementSref(filename)
|
|||
scalen = 1;
|
||||
scaled = cifCurReadStyle->crs_multiplier / crsMultiplier;
|
||||
}
|
||||
CIFScalePlanes(scalen, scaled, cifCurReadPlanes);
|
||||
CIFScalePlanes(scaled, scalen, cifCurReadPlanes);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue