home *** CD-ROM | disk | FTP | other *** search
/ Cutting-Edge 3D Game Programming with C++ / CE3DC++.ISO / BOOK / CHAP09 / LIGHTP.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-09  |  289 b   |  15 lines

  1. //
  2. //
  3. // File name: LightP.HPP
  4. //
  5. // Description: The structure for a point-light source
  6. //
  7. // Author: John De Goes
  8. //
  9. // Project: Cutting Edge 3D Game Programming
  10. //
  11.  
  12. // A point light source structure:
  13. struct PointLight {
  14. double X, Y, Z;
  15. } Light = { 1000.0F, 100.0F, 4.0F };