<> <> <> <> DIRECTORY CD USING [Design, Layer, Object, Rect], Rope USING [ROPE]; CDReadInterpress: CEDAR DEFINITIONS = BEGIN CreateIPCell: PROC [design: CD.Design, fileName: Rope.ROPE, layer: CD.Layer, pixelsPerMeter: REAL_2000, postScale: INT _ 1, pageNo: INT _ 1, deviceBitmap: CD.Rect_[1, 1, 0, 0]] RETURNS [cell: CD.Object]; <<--Creates cell from Interpress file>> <<--design: necessary because cell might have structure >> <<--pixelsPerMeter: device bitmap pixels per meter on interpress original >> <<--postScale: cd numbers per device bitmap pixel >> <<--pageNo: page of interpress master >> <<--deviceBitmap: size of bitmap allocated to render interpress file >> <<>> <<>> END.