<> <> <> <<>> DIRECTORY ImagerPress USING [PrinterType], ImagerTransformation USING [Transformation], Rope USING [ROPE]; ImagerPressFontSubst: CEDAR DEFINITIONS ~ BEGIN OPEN ImagerPress, ImagerTransformation, Rope; FindSubstitute: PROC [fontName: ROPE, m: Transformation, printerType: PrinterType] RETURNS [PressFontDescription]; <> <<>> PressFontDescription: TYPE ~ REF PressFontDescriptionRep; PressFontDescriptionRep: TYPE ~ RECORD [ family: ROPE, face: [0..256), rotation: INT, -- in minutes of arc size: INTEGER, -- in micas veryClose: BOOLEAN, exact: BOOLEAN ]; END.