home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / Documents / adobe / DPS_errata.txt < prev    next >
Encoding:
Text File  |  1992-05-04  |  1.7 KB  |  59 lines

  1. (c) 1987, 1988, 1989 Adobe Systems Incorporated.  All rights reserved.
  2.  
  3.  
  4. ERRATA SHEET FOR THE DISPLAY POSTSCRIPT(R) REFERENCE BINDER
  5.  
  6.  
  7. [The Display PostScript Reference Binder includes the following manuals:
  8.   Perspective for Software Developers (DPS_Persp.ps)
  9.   PostScript Language Extensions for Display PostScript System (DPS_Ext*.ps)
  10.   Client Libray Reference Manual (DPS_ClientLib*.ps)
  11.   X Window System Programmer's Supplement (DPS_X_ClientLib*.ps)
  12.   pswrap Reference Manual (DPS_pswrap.ps)
  13.   PostScript Language Color Extensions (Color_Ext.ps)
  14.   ]
  15.  
  16.  
  17. -----------------------------------------
  18. Adobe Systems Developer Reference Binder:
  19. -----------------------------------------
  20.  
  21. 1. In the index for each of the manuals in the Display PostScript Reference   Binder, occasionally some of the page number references are off by one   page.
  22.  
  23.  
  24. ------------------------
  25. pswrap Reference Manual:
  26. ------------------------
  27.  
  28. 2. The pswrap Reference Manual contains the following error:
  29.  
  30.    In section 4.5, "Input Arguments," on page 8, the example should end   with the fill operator, as follows:
  31.  
  32. Wrap definition:
  33.     defineps PSWGrayCircle(float x,y, radius)
  34.     newpath
  35.     x y radius 0.0 360.0 arc
  36.     closepath
  37.     0.5 setgray
  38.     fill
  39.     endps
  40.  
  41. Procedure call:
  42.     PSWGrayCircle(25.4, 17.7, 40.0);
  43.  
  44. PostScript language code equivalent:
  45.     newpath
  46.     25.4 17.7 40.0 0.0 360.0 arc
  47.     closepath
  48.     0.5 setgray
  49.     fill
  50.  
  51.  
  52.    Please note these changes in your copy of the manual.
  53.    Note: The version of the pswrap Reference Manual (any version after   2/14/90) that currently lives on the server has the above error corrected.
  54.    This error applies for copies retrieved from the server before that date.
  55.     
  56.  
  57.  
  58.  
  59.