Compiler GriffinFontDefs
Stone, February 18, 1980 5:02 PM
Tiberi January 24, 1980 4:58 PM
interface module for griffin fonts
Last Edited by: Stone, December 28, 1983 3:56 pm
DIRECTORY
Rope USING [ROPE];
GriffinFontDefs: CEDAR DEFINITIONS =
BEGIN
rotation in minutes, face as in Fonts.Widths
FontDescriptorHandle: TYPE = REF FontDescriptor;
FontDescriptor: TYPE = RECORD [name: Rope.ROPE, rotation, face, points: CARDINAL];
Rot0Degrees: CARDINAL = 0;
Rot90Degrees: CARDINAL = 5400;
Rot180Degrees: CARDINAL = 10800;
Rot270Degrees: CARDINAL = 16200;
Regular: CARDINAL = 0;
Italic: CARDINAL = 1;
Bold: CARDINAL = 2;
BoldItalic: CARDINAL = Bold + Italic;
END.