home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / illum.lha / D.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-08  |  708 b   |  31 lines

  1. /* ****************************************************************
  2.  *                            D.h
  3.  * ****************************************************************
  4.  * include file for the microfacet distribution functions
  5.  */
  6. #ifndef D_H
  7. #define D_H
  8.  
  9. /* Microfacet distribution routines
  10.  */
  11. double D_phong_init();
  12. double D_phong();
  13. double D_blinn_init();
  14. double D_blinn();
  15. double D_gaussian_init();
  16. double D_gaussian();
  17. double D_reitz_init();
  18. double D_reitz();
  19. double D_cook_init();
  20. double D_cook();
  21. double D_g();
  22. double D_tau();
  23. double D_sigma();
  24. double D_m();
  25. double D_coherent();
  26. double D_incoherent();
  27. double D_Vxz();
  28.  
  29. #endif D_H
  30. /* ************************************************************* */
  31.