From Kristofer Tingdahl, "we had a minor shadow problem with the osg-3.4 that pollutes our continuous integration"
git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15143 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
parent
ef6f2dbcfd
commit
de4a430931
@ -44,7 +44,7 @@ class BoundingSphereImpl
|
|||||||
BoundingSphereImpl() : _center(0.0,0.0,0.0),_radius(-1.0) {}
|
BoundingSphereImpl() : _center(0.0,0.0,0.0),_radius(-1.0) {}
|
||||||
|
|
||||||
/** Creates a bounding sphere initialized to the given extents. */
|
/** 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& cntr, value_type rad) : _center(cntr),_radius(rad) {}
|
||||||
|
|
||||||
/** Creates a bounding sphere initialized to the given extents. */
|
/** Creates a bounding sphere initialized to the given extents. */
|
||||||
BoundingSphereImpl(const BoundingSphereImpl& bs) : _center(bs._center),_radius(bs._radius) {}
|
BoundingSphereImpl(const BoundingSphereImpl& bs) : _center(bs._center),_radius(bs._radius) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user