ImagerFontPrivate.mesa
Copyright © 1985, 1986 by Xerox Corporation. All rights reserved.
Doug Wyatt, November 11, 1985 4:09:14 pm PST
Michael Plass, February 25, 1986 1:25:42 pm PST
DIRECTORY Imager, ImagerFont, ImagerTransformation, ImagerTypeface, Rope;
ImagerFontPrivate: CEDAR DEFINITIONS
~ BEGIN
MaskChar:
PROC [font: ImagerFont.Font, char: ImagerFont.XChar, context: Imager.Context];
MakeUName:
PROC [name: Rope.
ROPE]
RETURNS [ImagerFont.UName];
GetFont:
PROC [uName: ImagerFont.UName, m: ImagerTransformation.Transformation, mIsImmutable:
BOOL ←
FALSE]
RETURNS [ImagerFont.Font];
GetMetrics:
PROC [uName: ImagerFont.UName]
RETURNS [ImagerTypeface.Metrics];
GetMasks:
PROC [uName: ImagerFont.UName]
RETURNS [ImagerTypeface.Masks];
END.