ASDisplayManager.mesa
Last Edited by: Arnon, November 24, 1987 8:11:12 am PST
Given a viewer (i.e. a context) and a collection of Objects, renders those Objects into that context.
Such facilities are more general than just AlgebraStructures Objects; this interface should really be in such a lower-level, more general package that sits just above the Objects package.
Can do incremental management and reviewing of such collections of Objects.
This is the interface through which all AlgebraStructures plotting is done. QE Display is just a particular instance of that.
DIRECTORY
Rope,
IO,
AlgebraClasses,
Variables,
RatPolynomials,
AlgebraicNumbers,
RealFields,
AlgebraicPolynomials,
Formulas,
QETypes,
QEIO,
Cad;
ASDisplayManager: CEDAR DEFINITIONS
IMPORTS AlgebraicNumbers, RealFields
~ BEGIN OPEN AC: AlgebraClasses, VARS: Variables, RP: RatPolynomials, AN: AlgebraicNumbers, RF: RealFields, AP: AlgebraicPolynomials, QFF: Formulas, QET: QETypes, QEIO, Cad;
Name: PROC [Args] RETURNS [Results] ~ {
Body
};
END.