home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / sci / virtual / 2556 < prev    next >
Encoding:
Internet Message Format  |  1992-07-25  |  2.2 KB

  1. Path: sparky!uunet!ogicse!usenet.coe.montana.edu!news.u.washington.edu!milton.u.washington.edu!hlab
  2. From: thinman@netcom.com (Technically Sweet)
  3. Newsgroups: sci.virtual-worlds
  4. Subject: TECH: on real-time texture mapping
  5. Message-ID: <1992Jul26.074450.8737@u.washington.edu>
  6. Date: 24 Jul 92 19:04:39 GMT
  7. Article-I.D.: u.1992Jul26.074450.8737
  8. References: <BrrpoH.I5H@watserv1.waterloo.edu> <1992Jul24.051008.17131@u.washing
  9. Sender: news@u.washington.edu (USENET News System)
  10. Organization: International Foundation for Internal Freedom
  11. Lines: 51
  12. Approved: cyberoid@milton.u.washington.edu
  13. Originator: hlab@milton.u.washington.edu
  14.  
  15.  
  16. I stand corrected.  Mip-mapping operates by storing successively
  17. larger square pixmaps which are manufactured from a given input pixmap.
  18. To resample these maps to an arbitrary plane, you pick the appropriate
  19. mipmap from the size of the target planar surface, calculate the
  20. coordinates (called s and t) into the mipmap, and pull out the
  21. required pixels.  The output will look nicer if pixels from
  22. different mipmap levels are interpolated.  Here are references
  23. for mipmaps and a competitive technique, summed-area tables.
  24. (My informant prefers the latter, and mailed example source code
  25. for doing the pixel lookups.  I'm checking with him on a source
  26. code release.)
  27.  
  28. On mipmaps:
  29.  
  30. @INCOLLECTION {heckbert91,
  31.         AUTHOR = "Heckbert, Paul S. and Moreton, Henry P.",
  32.         TITLE = "Interpolation for Polygon Texture Mapping and Shading",
  33.         BOOKTITLE = "State of the Art in Computer Graphics, Visualization and Mo
  34. deling",
  35.         PUBLISHER = "Springer Verlag",
  36.         YEAR = 1991,
  37.         EDITOR = "Rogers, David and Earnshaw, Rae"
  38. }
  39.  
  40. @TECHREPORT{ tmpip,
  41.         AUTHOR = "Heckbert, Paul S.",
  42.         TITLE = "Texture Mapping Polygons in Perspective",
  43.         INSTITUTION = "Computer Graphics Lab, New York Institute of Technology",
  44.         YEAR = 1983,
  45.         NUMBER = 13,
  46.         MONTH = "April"
  47. }
  48.  
  49.  
  50. On summed-area tables:
  51.  
  52. @ARTICLE{summedtables,
  53.         AUTHOR = "Crow, Franklin C.",
  54.         TITLE = "Summed-Area Tables for Texture Mapping",
  55.         JOURNAL = "Computer Graphics",
  56.         YEAR = "1984",
  57.         VOLUME = "Vol. 18",
  58.         MONTH = "July"
  59. }
  60.  
  61. -- 
  62.  
  63. Lance Norskog
  64.  
  65. Data is not information is not knowledge is not wisdom.
  66.