- Timestamp:
- 09/06/06 00:48:55 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Groups/Light/OSGSpotLightBase.cpp
r2 r54 193 193 } 194 194 195 #ifdef OSG_1_COMPAT 196 SFVec3r *SpotLightBase::getSFDirection(void) 197 { 198 return this->editSFDirection(); 199 } 200 #endif 201 195 202 SFReal *SpotLightBase::editSFSpotExponent(void) 196 203 { … … 205 212 } 206 213 214 #ifdef OSG_1_COMPAT 215 SFReal *SpotLightBase::getSFSpotExponent(void) 216 { 217 return this->editSFSpotExponent(); 218 } 219 #endif 220 207 221 SFReal *SpotLightBase::editSFSpotCutOff(void) 208 222 { … … 216 230 return &_sfSpotCutOff; 217 231 } 232 233 #ifdef OSG_1_COMPAT 234 SFReal *SpotLightBase::getSFSpotCutOff(void) 235 { 236 return this->editSFSpotCutOff(); 237 } 238 #endif 218 239 219 240
