From d4cfaae406f51ba128b73afd3da4524401e7c95e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 13 Jan 2004 09:47:50 +0000 Subject: [PATCH] Fixed typo's of ImpostorSprite --- include/osgUtil/CullVisitor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osgUtil/CullVisitor b/include/osgUtil/CullVisitor index 80f16e36c..930f04345 100644 --- a/include/osgUtil/CullVisitor +++ b/include/osgUtil/CullVisitor @@ -100,17 +100,17 @@ class OSGUTIL_EXPORT CullVisitor : public osg::NodeVisitor, public osg::CullStac /** Get the impostor error threshold.*/ float getImpostorPixelErrorThreshold() const { return _impostorPixelErrorThreshold; } - /** Set whether ImpsotorSprite's should be placed in a depth sorted bin for rendering.*/ + /** Set whether ImpostorSprite's should be placed in a depth sorted bin for rendering.*/ void setDepthSortImpostorSprites(bool doDepthSort) { _depthSortImpostorSprites = doDepthSort; } - /** Get whether ImpsotorSprite's are depth sorted bin for rendering.*/ + /** Get whether ImpostorSprite's are depth sorted bin for rendering.*/ bool setDepthSortImpostorSprites() const { return _depthSortImpostorSprites; } - /** Set the number of frames that an ImpsotorSprite's is kept whilst not being beyond, + /** Set the number of frames that an ImpostorSprite's is kept whilst not being beyond, * before being recycled.*/ void setNumberOfFrameToKeepImpostorSprites(int numFrames) { _numFramesToKeepImpostorSprites = numFrames; } - /** Get the number of frames that an ImpsotorSprite's is kept whilst not being beyond, + /** Get the number of frames that an ImpostorSprite's is kept whilst not being beyond, * before being recycled.*/ int getNumberOfFrameToKeepImpostorSprites() const { return _numFramesToKeepImpostorSprites; }