JasmineModel.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Created by Neil Gunther, June 24, 1986 2:18:03 pm PDT
Last Edited by: Neil Gunther June 24, 1986 2:26:40 pm PDT
DIRECTORY Core, CStitching, SymTab;
JasmineModel: CEDAR DEFINITIONS = BEGIN
JasmineModelLocation: TYPE = RECORD [row: INT, col: INT];
CreateModel: PROC [tesselation: CStitching.Tesselation] RETURNS [model: SymTab.Ref];
MapConvert: PROC [jml: JasmineModelLocation] RETURNS [sym: Core.ROPE];
END.