<> <> <> <> <> DIRECTORY Rope USING [ROPE]; GriffinFontDefs: CEDAR DEFINITIONS = BEGIN <> 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.