GGAlignTypes.mesa
Copyright © 1992 by Xerox Corporation. All rights reserved.
Bier, July 29, 1992 4:27 pm PDT
Contents: The FilterLists type, used by GGAlign and GGState.
DIRECTORY
;
GGAlignTypes: CEDAR DEFINITIONS = BEGIN
FilterLists: TYPE = REF FilterListsObj;
FilterListsObj: TYPE = RECORD [
onSlopes: LIST OF REAL,
onRadii: LIST OF REAL,
onAngles: LIST OF REAL,
onDistances: LIST OF REAL,
scaleUnit: REAL ¬ 72.0
];
END.