CSMonitor.mesa
Copyright c 1984 by Xerox Corporation. All rights reserved.
Written by Shand, September 20, 1983 11:40 pm
Last Edited by: Shand, July 26, 1984 5:40:49 am PDT
Last Edited by: Jacobi, January 3, 1985 3:47:07 pm PST
DIRECTORY
CornerStitching USING [Tesselation],
Rope USING [ROPE];
CSMonitor: CEDAR DEFINITIONS =
BEGIN
Monitor: PROCEDURE [plane: REF CornerStitching.Tesselation, name: Rope.ROPENIL, paintDark: PaintPredicate ← NIL];
PaintPredicate: TYPE = PROCEDURE [tileVal: REF ANY] RETURNS [BOOLEAN];
END.