Coverted tabs to space in core libraries.

This commit is contained in:
Robert Osfield
2005-11-17 13:35:53 +00:00
parent 168225ebaf
commit 0e16b64665
33 changed files with 1400 additions and 1409 deletions

View File

@@ -15,14 +15,14 @@
using namespace osgUtil;
HalfWayMapGenerator::HalfWayMapGenerator(const osg::Vec3 &light_direction, int texture_size)
: CubeMapGenerator(texture_size),
ldir_(light_direction)
: CubeMapGenerator(texture_size),
ldir_(light_direction)
{
ldir_.normalize();
ldir_.normalize();
}
HalfWayMapGenerator::HalfWayMapGenerator(const HalfWayMapGenerator &copy, const osg::CopyOp &copyop)
: CubeMapGenerator(copy, copyop),
ldir_(copy.ldir_)
: CubeMapGenerator(copy, copyop),
ldir_(copy.ldir_)
{
}