IPImage.mesa
Copyright © 1984, 1985, 1986 by Xerox Corporation. All rights reserved.
Doug Wyatt, May 30, 1986 5:16:56 pm PDT
DIRECTORY
IPInterpreter USING [Ref];
IPImage: CEDAR DEFINITIONS ~ BEGIN
Ref: TYPE ~ IPInterpreter.Ref;
Imager state (4.2)
ApplyIGET: PROC [Ref];
ApplyISET: PROC [Ref];
Transformations and instancing (4.4)
ApplyMAKET: PROC [Ref];
ApplyTRANSLATE: PROC [Ref];
ApplyROTATE: PROC [Ref];
ApplySCALE: PROC [Ref];
ApplySCALE2: PROC [Ref];
ApplyCONCAT: PROC [Ref];
ApplyCONCATT: PROC [Ref];
ApplyMOVE: PROC [Ref];
ApplyTRANS: PROC [Ref];
Current position operators (4.5)
ApplySETXY: PROC [Ref];
ApplySETXYREL: PROC [Ref];
ApplySETXREL: PROC [Ref];
ApplySETYREL: PROC [Ref];
ApplyGETCP: PROC [Ref];
Pixel arrays (4.6)
ApplyMAKEPIXELARRAY: PROC [Ref];
ApplyEXTRACTPIXELARRAY: PROC [Ref];
ApplyFINDDECOMPRESSOR: PROC [Ref];
Color (4.7)
ApplyMAKEGRAY: PROC [Ref];
ApplyFINDCOLOR: PROC [Ref];
ApplyFINDCOLOROPERATOR: PROC [Ref];
ApplyFINDCOLORMODELOPERATOR: PROC [Ref];
ApplyMAKESAMPLEDCOLOR: PROC [Ref];
ApplyMAKESAMPLEDBLACK: PROC [Ref];
ApplySETGRAY: PROC [Ref];
ApplySETSAMPLEDCOLOR: PROC [Ref];
ApplySETSAMPLEDBLACK: PROC [Ref];
Mask operators (4.8)
ApplyMOVETO: PROC [Ref];
ApplyLINETO: PROC [Ref];
ApplyLINETOX: PROC [Ref];
ApplyLINETOY: PROC [Ref];
ApplyCURVETO: PROC [Ref];
ApplyCONICTO: PROC [Ref];
ApplyARCTO: PROC [Ref];
ApplyMAKEOUTLINE: PROC [Ref];
ApplyMAKEOUTLINEODD: PROC [Ref];
ApplyMASKFILL: PROC [Ref];
ApplyMASKFILLPARITY: PROC [Ref];
ApplyMASKRECTANGLE: PROC [Ref];
ApplySTARTUNDERLINE: PROC [Ref];
ApplyMASKUNDERLINE: PROC [Ref];
ApplyMASKTRAPEZOIDX: PROC [Ref];
ApplyMASKTRAPEZOIDY: PROC [Ref];
ApplyMASKSTROKE: PROC [Ref];
ApplyMASKSTROKECLOSED: PROC [Ref];
ApplyMASKVECTOR: PROC [Ref];
ApplyMASKDASHEDSTROKE: PROC [Ref];
ApplyMASKPIXEL: PROC [Ref];
ApplyCLIPOUTLINE: PROC [Ref];
ApplyCLIPRECTANGLE: PROC [Ref];
Character operators (4.9)
ApplyMASKCHAR: PROC [Ref];
ApplyMAKEFONT: PROC [Ref];
ApplyFINDFONT: PROC [Ref];
ApplyMODIFYFONT: PROC [Ref];
ApplySETFONT: PROC [Ref];
ApplySHOW: PROC [Ref];
ApplySHOWANDXREL: PROC [Ref];
ApplySHOWANDFIXEDXREL: PROC [Ref];
Spacing correction (4.10)
ApplyCORRECTMASK: PROC [Ref];
ApplyCORRECTSPACE: PROC [Ref];
ApplyCORRECT: PROC [Ref];
ApplySETCORRECTMEASURE: PROC [Ref];
ApplySETCORRECTTOLERANCE: PROC [Ref];
ApplySPACE: PROC [Ref];
END.