home *** CD-ROM | disk | FTP | other *** search
- //
- //
- // File name: LightP.HPP
- //
- // Description: The structure for a point-light source
- //
- // Author: John De Goes
- //
- // Project: Cutting Edge 3D Game Programming
- //
-
- #ifndef LIGHTPHPP
- #define LIGHTPHPP
-
- // A point light source structure:
- struct PointLight {
- double X, Y, Z;
- } Light = { 1000.0F, 100.0F, 4.0F };
-
- #endif