From Jannik Heller, typo fixes

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14832 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2015-04-13 10:43:56 +00:00
parent 166c49eedd
commit 0a1db3d6fc
60 changed files with 110 additions and 110 deletions

View File

@@ -50,26 +50,26 @@ ShadowTechnique::~ShadowTechnique()
void ShadowTechnique::init()
{
OSG_NOTICE<<className()<<"::init() not implemened yet"<<std::endl;
OSG_NOTICE<<className()<<"::init() not implemented yet"<<std::endl;
_dirty = false;
}
void ShadowTechnique::update(osg::NodeVisitor& nv)
{
OSG_NOTICE<<className()<<"::update(osg::NodeVisitor&) not implemened yet."<<std::endl;
OSG_NOTICE<<className()<<"::update(osg::NodeVisitor&) not implemented yet."<<std::endl;
_shadowedScene->osg::Group::traverse(nv);
}
void ShadowTechnique::cull(osgUtil::CullVisitor& cv)
{
OSG_NOTICE<<className()<<"::cull(osgUtl::CullVisitor&) not implemened yet."<<std::endl;
OSG_NOTICE<<className()<<"::cull(osgUtl::CullVisitor&) not implemented yet."<<std::endl;
_shadowedScene->osg::Group::traverse(cv);
}
void ShadowTechnique::cleanSceneGraph()
{
OSG_NOTICE<<className()<<"::cleanSceneGraph()) not implemened yet."<<std::endl;
OSG_NOTICE<<className()<<"::cleanSceneGraph()) not implemented yet."<<std::endl;
}
void ShadowTechnique::traverse(osg::NodeVisitor& nv)