Small bug fix to osg::BoundingBox::expandBy(x,y,z).

Updated ChangeLog and NEWS for the release.
This commit is contained in:
Robert Osfield
2002-07-19 15:49:43 +00:00
parent 1264bd5869
commit 4594907832
3 changed files with 2662 additions and 220 deletions

View File

@@ -146,8 +146,8 @@ class SG_EXPORT BoundingBox
if(y<_min.y()) _min.y() = y;
if(y>_max.y()) _max.y() = y;
if(x<_min.z()) _min.z() = x;
if(x>_max.z()) _max.z() = x;
if(z<_min.z()) _min.z() = z;
if(z>_max.z()) _max.z() = z;
}
/** If incoming box is out-with the box expand to encompass incoming box.