IPFont.mesa
Copyright © 1984 Xerox Corporation. All rights reserved.
Doug Wyatt, October 15, 1984 2:47:03 pm PDT
DIRECTORY
ImagerFont USING [Font],
IPInterpreter USING [State, Transformation, Vector];
IPFont: CEDAR DEFINITIONS
= BEGIN OPEN IPInterpreter;
Font: TYPE ~ ImagerFont.Font;
VectorFromFont: PROC[Font] RETURNS[Vector];
FindFont: PROC[self: State, v: Vector] RETURNS[Vector];
FindFontVec: PROC[self: State, v: Vector] RETURNS[Vector];
ModifyFont: PROC[v: Vector, m: Transformation] RETURNS[Vector];
END.