SXLayers.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Written by Shand, September 12, 1983 11:40 pm
Last Edited by: Shand, July 31, 1984 3:15:46 am PDT
Last Edited by: Beretta, March 20, 1985 5:52:27 pm PST
DIRECTORY
CornerStitching USING [Tesselation],
SX USING [LogicalCell, SpinifexLayerIndex]
;
SXLayers: CEDAR DEFINITIONS ~ BEGIN
AnalyzeGeometry: PROCEDURE [cell: REF SX.LogicalCell];
-- -------------------------
Maintenance aids
Tesselation: TYPE ~ CornerStitching.Tesselation;
SaveTesselations: PROC [save: BOOLFALSE];
GetTesselation: PROC [conflicts: BOOLTRUE, layer: SX.SpinifexLayerIndex] RETURNS [REF CornerStitching.Tesselation];
IF conflicts THEN RETURN ConflictWorld ELSE RETURN GeometryWorld.
END.
Edited on March 19, 1985 6:00:22 pm PST, by Beretta
Added maintenance aids section.