From c45ead4c65b11c0184f2fd0e8d0aa304a030cbe7 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 4 Dec 2005 20:08:41 +0000 Subject: [PATCH] Fixed tabbing. --- include/osg/BoundingBox | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osg/BoundingBox b/include/osg/BoundingBox index 1315ea4ec..2f4cb2878 100644 --- a/include/osg/BoundingBox +++ b/include/osg/BoundingBox @@ -30,10 +30,10 @@ class OSG_EXPORT BoundingBox { public: - /** Minimum extent. (Smallest X, Y, and Z values of all coordinates.) */ - Vec3 _min; - /** Maximum extent. (Greatest X, Y, and Z values of all coordinates.) */ - Vec3 _max; + /** Minimum extent. (Smallest X, Y, and Z values of all coordinates.) */ + Vec3 _min; + /** Maximum extent. (Greatest X, Y, and Z values of all coordinates.) */ + Vec3 _max; /** Creates an uninitialized bounding box. */ inline BoundingBox() : _min(FLT_MAX,FLT_MAX,FLT_MAX),