home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume21 / rayshade / part01 / TODO < prev   
Encoding:
Text File  |  1990-03-21  |  1.2 KB  |  33 lines

  1. Add CSG.
  2.  
  3. Make "distributed ray tracing" implementation more complete.  Sample for
  4. depth of field, gloss, etc.
  5.  
  6. Keep track of maxt for a given ray and pass it to the various
  7. intersection routines.  For example, we can stop traversing a height
  8. field grid if the ray hasn't hit the height field by the time we're
  9. "maxt" along the ray.
  10.  
  11. Keep track of the primitives hit for (at least a portion of) the ray
  12. tree.  When spawaning a new ray, check for intersection with the primitive
  13. last hit by the corresponding ray in the saved tree.  If it hits, you have a
  14. value for "maxt" for the above.
  15.  
  16. Make heightfields be stored in fixed-point, and take care of byte-ordering
  17. problems so that height fields are transportable from machine to machine.
  18.  
  19. Implement something similar to Jevans & Wyvill's adaptive subdivision scheme.
  20.  
  21. Add better antialiasing (e.g., Mitchell's paper).
  22.  
  23. Add a better way to do continue an interrupted trace.  There should be code
  24. in rayshade to find the number of the last line traced and start from
  25. there.
  26.  
  27. Add an option to perform sorting during ray/List intersection tests so
  28. we test objects roughly in order.
  29.  
  30. Improve handling of input files (error messages, #include directives, etc.).
  31.  
  32. Have workers pass statistics back to the supervisor.
  33.