Files
OpenSceneGraph/src/osg/LightSource.cpp
2001-10-21 21:27:40 +00:00

26 lines
484 B
C++

#include <osg/LightSource>
using namespace osg;
LightSource::LightSource()
{
_bsphere_computed = false;
}
LightSource::~LightSource()
{
// ref_ptr<> automactially decrements the reference count of attached lights.
}
const bool LightSource::computeBound() const
{
// note, don't do anything right now as the light itself is not
// visualised, just having an effect on the lighting of geodes.
_bsphere.init();
_bsphere_computed = true;
return true;
}