Changeset 8293
- Timestamp:
- 05/08/08 19:02:08
- Files:
-
- OpenSceneGraph/trunk/src/osg/BoundingSphere.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osg/BoundingSphere.cpp
r8038 r8293 94 94 void BoundingSphere::expandBy(const BoundingSphere& sh) 95 95 { 96 // ignore operation if incomming BoundingSphere is invalid. 97 if (!sh.valid()) return; 96 98 97 99 // This sphere is not set so use the inbound sphere … … 103 105 return; 104 106 } 105 107 106 108 107 109 // Calculate d == The distance between the sphere centers
