Introduced osgVolume::Layer and Locator classes mirrroring similar classes in osgTerrain.

This commit is contained in:
Robert Osfield
2009-01-05 11:26:26 +00:00
parent 788bead9fe
commit cedffd3adb
8 changed files with 549 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ class BoundingSphereImpl
BoundingSphereImpl() : _center(0.0,0.0,0.0),_radius(-1.0) {}
/** Creates a bounding sphere initialized to the given extents. */
BoundingSphereImpl(const vec_type& center,value_type radius) : _center(center),_radius(radius) {}
BoundingSphereImpl(const vec_type& center, value_type radius) : _center(center),_radius(radius) {}
/** Creates a bounding sphere initialized to the given extents. */
BoundingSphereImpl(const BoundingSphereImpl& bs) : _center(bs._center),_radius(bs._radius) {}