class PointLightObject
Defined in:
The C4LightObjects.h
PointLightObject
class encapsulates data pertaining to a point light source.
Definition
class PointLightObject : public LightObject
Member Functions
PointLightObject::GetLightRange |
Returns the spherical range of the light source. |
PointLightObject::SetLightRange |
Sets the spherical range of the light source. |
Constructor
PointLightObject(const ColorRGB& color, float range);
Parameters
color |
The color of light emitted by the light source. |
range |
The spherical range of the light source. |
Description
A point light source illuminates a world from a single point with distance attenuation causing its intensity to fall to zero at its maximum range. The PointLightObject
class contains information specific to the point light type.
Base Classes
LightObject |
A PointLightObject is a specific type of light object.
|
See Also