- Timestamp:
- 12/29/06 10:28:00 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Groups/Base/OSGLightBase.cpp
r434 r459 77 77 \ingroup GrpSystemNodeCoresLights 78 78 79 Light is the base class for all the light source nodes. It contains the80 field for the general light source attributes (AmbientColor,81 DiffuseColor, SpecularColor, Beacon). The Beacon defines the reference82 coordinate system for the lightsource, while the position in the graph83 defines the objects that are lit.79 Light is the base class for all the light source nodes. 80 It contains the field for the general light source attributes 81 (AmbientColor, DiffuseColor, SpecularColor, Beacon). The Beacon 82 defines the reference coordinate system for the lightsource, while 83 the position in the graph defines the objects that are lit. 84 84 */ 85 85 … … 91 91 The light's ambient component. 92 92 */ 93 93 94 /*! \var Color4r LightBase::_sfDiffuse 94 95 The light's diffuse color. 95 96 */ 97 96 98 /*! \var Color4r LightBase::_sfSpecular 97 99 The light's specular color. 98 100 */ 101 99 102 /*! \var NodePtr LightBase::_sfBeacon 100 103 101 104 */ 105 102 106 /*! \var bool LightBase::_sfOn 103 107 104 108 */ 109 105 110 /*! \var Real LightBase::_sfConstantAttenuation 106 111 The light's constant attenuation. 107 112 */ 113 108 114 /*! \var Real LightBase::_sfLinearAttenuation 109 115 The light's linear attenuation. 110 116 */ 117 111 118 /*! \var Real LightBase::_sfQuadraticAttenuation 112 119 The light's quadratic attenuation. 113 120 */ 121 114 122 /*! \var LightEnginePtr LightBase::_sfLightEngine 115 123 116 124 */ 125 117 126 118 127 void LightBase::classDescInserter(TypeObject &oType) … … 417 426 "</FieldContainer>\n", 418 427 "\\ingroup GrpSystemNodeCoresLights\n" 428 "\n" 419 429 "Light is the base class for all the light source nodes.\n" 420 430 "It contains the field for the general light source attributes\n"
