<<>> <> <> <> <<>> <> <<>> DIRECTORY Imager USING [Context, Rectangle, Transformation], Rope USING [ROPE], TiogaAccess USING [Writer]; ImagerArtwork: CEDAR DEFINITIONS ~ BEGIN Points: PROC RETURNS [Imager.Transformation]; <> WriteArtwork: PROC [ writer: TiogaAccess.Writer, action: PROC [Imager.Context], bounds: Imager.Rectangle, m: Imager.Transformation ¬ NIL, clip: BOOL ¬ TRUE, fit: BOOL ¬ FALSE, caption: BOOL ¬ TRUE]; <> <> <> <> PasteArtwork: PROC [ action: PROC [Imager.Context], bounds: Imager.Rectangle, m: Imager.Transformation ¬ NIL, clip: BOOL ¬ TRUE, fit: BOOL ¬ FALSE, caption: BOOL ¬ TRUE]; <> <> <> CreateInterpressRope: PROC [ action: PROC [Imager.Context], bounds: Imager.Rectangle, m: Imager.Transformation ¬ NIL, clip: BOOL ¬ TRUE] RETURNS [Rope.ROPE]; <> END.