home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cutting-Edge 3D Game Programming with C++
/
CE3DC++.ISO
/
BOOK
/
CHAP09
/
LIGHTP.HPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-11-09
|
289 b
|
15 lines
//
//
// File name: LightP.HPP
//
// Description: The structure for a point-light source
//
// Author: John De Goes
//
// Project: Cutting Edge 3D Game Programming
//
// A point light source structure:
struct PointLight {
double X, Y, Z;
} Light = { 1000.0F, 100.0F, 4.0F };