Fix typos and spelling.

This commit is contained in:
Alberto Luaces
2018-04-20 18:18:22 +02:00
committed by Robert Osfield
parent c3008512f1
commit 02c310982e
187 changed files with 302 additions and 302 deletions

View File

@@ -85,24 +85,24 @@ void TerrainTechnique::setTerrainTile(TerrainTile* tile)
void TerrainTechnique::init(int /*dirtyMask*/, bool /*assumeMultiThreaded*/)
{
OSG_NOTICE<<className()<<"::init(..) not implementated yet"<<std::endl;
OSG_NOTICE<<className()<<"::init(..) not implemented yet"<<std::endl;
}
void TerrainTechnique::update(osgUtil::UpdateVisitor* uv)
{
OSG_NOTICE<<className()<<"::update(..) not implementated yet"<<std::endl;
OSG_NOTICE<<className()<<"::update(..) not implemented yet"<<std::endl;
if (_terrainTile) _terrainTile->osg::Group::traverse(*uv);
}
void TerrainTechnique::cull(osgUtil::CullVisitor* cv)
{
OSG_NOTICE<<className()<<"::cull(..) not implementated yet"<<std::endl;
OSG_NOTICE<<className()<<"::cull(..) not implemented yet"<<std::endl;
if (_terrainTile) _terrainTile->osg::Group::traverse(*cv);
}
void TerrainTechnique::cleanSceneGraph()
{
OSG_NOTICE<<className()<<"::cleanSceneGraph(..) not implementated yet"<<std::endl;
OSG_NOTICE<<className()<<"::cleanSceneGraph(..) not implemented yet"<<std::endl;
}
void TerrainTechnique::traverse(osg::NodeVisitor& nv)