From 097c8f18f947d5c12a74ab5d708019bdc115f621 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 4 Apr 2005 13:22:24 +0000 Subject: [PATCH] Fixed comment --- include/osg/CullStack | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/CullStack b/include/osg/CullStack index 410420efa..8b55b7c7c 100644 --- a/include/osg/CullStack +++ b/include/osg/CullStack @@ -53,13 +53,13 @@ class SG_EXPORT CullStack : public osg::CullSettings inline float getFrustumVolume() { if (_frustumVolume<0.0f) computeFrustumVolume(); return _frustumVolume; } - /** Compute the pixel of an object at position v, with specified radius.*/ + /** Compute the pixel size of an object at position v, with specified radius.*/ float pixelSize(const Vec3& v,float radius) const { return getCurrentCullingSet().pixelSize(v,radius); } - /** Compute the pixel of the bounding sphere.*/ + /** Compute the pixel size of the bounding sphere.*/ float pixelSize(const BoundingSphere& bs) const { return pixelSize(bs.center(),bs.radius());