home *** CD-ROM | disk | FTP | other *** search
/ Ray Tracing Box / RAY_CD.mdf / raytrace / pov / knownbug.doc < prev    next >
Text File  |  1993-11-29  |  1KB  |  43 lines

  1.  
  2.                   Persistence of Vision Raytracer
  3.                            Version 2.1
  4.                         Known Bug Information
  5.                   -------------------------------
  6.  
  7. The only verified bug that we have found but not fixed in POV-Ray 2.1
  8. is a problem with height fields which causes holes, missing sections
  9. or cracks.  The POV-Ray Team is working on the problem but decided to
  10. not delay this release further.  See WHATSNEW.DOC for the bugs we did
  11. fix.
  12.  
  13. If you have problems with height fields and are able to re-compile
  14. the source code, the following changes work around the problem but
  15. it defeats much of the height field optimization and slows things
  16. appreciably.
  17.  
  18. In HFIELD.C at lines 254-259 and 407-412 you should comment-out the
  19. lines....
  20.  
  21.  
  22.   if(min_value(start->y,end->y) > (DBL)Block->max_y)
  23.     return(FALSE);
  24.  
  25.   if(max_value(start->y,end->y) < (DBL)Block->min_y)
  26.     return(FALSE);
  27.  
  28. Of course if you remove these lines, the height fields render more slowly.
  29. It appears that the min/max values for the "blocks" are being calculated
  30. incorrectly at times. 
  31.  
  32. When a better fix is available we will release it.
  33.  
  34.    If you have any questions about POV-Ray, please contact
  35.  
  36.      Chris Young
  37.      [POV-Team Coordinator]
  38.  
  39.      CIS: 76702,1655
  40.      Internet: 76702.1655@compuserve.com
  41.  
  42.  
  43.