ImagerDeviceVector.mesa
Copyright Ó 1989, 1991 by Xerox Corporation. All rights reserved.
Michael Plass, September 1, 1989 9:15:22 am PDT
DIRECTORY
Scaled USING [Value],
Vector2 USING [VEC];
ImagerDeviceVector: CEDAR DEFINITIONS
~ BEGIN
ScaledVec: TYPE ~ RECORD [s, f: Scaled.Value];
DVec: TYPE ~ REF DVecRep;
DVecRep: TYPE ~ RECORD [
In device coordinates.
scaled: BOOL, -- Says which of the following representations is the truth:
sv: ScaledVec,
fv: Vector2.VEC
];
END.