Show
Ignore:
Timestamp:
09/06/06 00:48:55 (2 years ago)
Author:
vossg
Message:

fixed : missing symbols (compat mode)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Groups/Light/OSGSpotLightBase.cpp

    r2 r54  
    193193} 
    194194 
     195#ifdef OSG_1_COMPAT 
     196SFVec3r *SpotLightBase::getSFDirection(void) 
     197{ 
     198    return this->editSFDirection(); 
     199} 
     200#endif 
     201 
    195202SFReal *SpotLightBase::editSFSpotExponent(void) 
    196203{ 
     
    205212} 
    206213 
     214#ifdef OSG_1_COMPAT 
     215SFReal *SpotLightBase::getSFSpotExponent(void) 
     216{ 
     217    return this->editSFSpotExponent(); 
     218} 
     219#endif 
     220 
    207221SFReal *SpotLightBase::editSFSpotCutOff(void) 
    208222{ 
     
    216230    return &_sfSpotCutOff; 
    217231} 
     232 
     233#ifdef OSG_1_COMPAT 
     234SFReal *SpotLightBase::getSFSpotCutOff(void) 
     235{ 
     236    return this->editSFSpotCutOff(); 
     237} 
     238#endif 
    218239 
    219240