Further work on osgShadow::ShadowTechnique API

This commit is contained in:
Robert Osfield
2007-02-08 19:34:38 +00:00
parent 95befaf1ed
commit c2665963bb
6 changed files with 69 additions and 4 deletions

View File

@@ -30,6 +30,10 @@ ShadowTechnique::ShadowTechnique(const ShadowTechnique& copy, const osg::CopyOp&
{
}
ShadowTechnique::~ShadowTechnique()
{
}
void ShadowTechnique::init()
{
osg::notify(osg::NOTICE)<<className()<<"::init() not implemened yet"<<std::endl;
@@ -49,6 +53,11 @@ void ShadowTechnique::cull(osg::NodeVisitor& nv)
_shadowedScene->osg::Group::traverse(nv);
}
void ShadowTechnique::cleanSceneGraph()
{
osg::notify(osg::NOTICE)<<className()<<"::cleanSceneGraph()) not implemened yet."<<std::endl;
}
void ShadowTechnique::traverse(osg::NodeVisitor& nv)
{
if (!_shadowedScene) return;