home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsiv / errata.graphicsgems < prev    next >
Encoding:
Text File  |  1994-12-13  |  1.2 KB  |  52 lines

  1. Errata to _Graphics Gems IV_, first edition, edited by Paul Heckbert
  2. (Paul.Heckbert@HOSTESS.GRAPHICS.CS.CMU.EDU), Academic Press 1994.  Code
  3. available online in princeton.edu:pub/Graphics/GraphicsGems/GemsIV.
  4.  
  5. compiled by Eric Haines (erich@eye.com) from author and reader contributions
  6.  
  7. version 1.1
  8. date:  12/13/94
  9.  
  10. -----
  11.  
  12. Errors in the text:
  13.  
  14. p. 129, lines 4,7,10:  changes:
  15.         "if (x < 0)" to "if (x >= 0)",
  16.         "if (y < 0)" to "if (y >= 0)",
  17.         "if (z < 0)" to "if (z >= 0)".
  18.  
  19. p. 349, for (Moore 1992):  change "Rice University, Houston, TX" to "Cornell
  20.     University, Ithaca, NY".
  21.  
  22. -----
  23.  
  24. The following are errors in the code listings (corrected in the online code at
  25. princeton.edu:pub/Graphics/GraphicsGems/GemsIV).  Note that many of the code
  26. listings online are different in minor and major ways from the code in the
  27. book.
  28.  
  29.  
  30. Serious errors (ones your compiler cannot or may not catch):
  31.  
  32. [none so far]
  33.  
  34. -----
  35.  
  36. Syntax errors (ones that are not usually harmful, or are easily caught):
  37.  
  38. [none so far]
  39.  
  40. -----
  41.  
  42. The following are typographical errors in the comments:
  43.  
  44. [none so far]
  45.  
  46. -----
  47.  
  48. A new point in polygon test has been added to ptpoly_haines/ptinpoly.c, a
  49. variation on the Crossings test which is about 15% faster for triangles.
  50.  
  51. END
  52.