Skip to content

Commit

Permalink
From Kristofer Tingdahl, "we had a minor shadow problem with the osg-…
Browse files Browse the repository at this point in the history
…3.4 that pollutes our continuous integration"

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15143 16af8721-9629-0410-8352-f15c8da7e697
  • Loading branch information
robertosfield committed Sep 25, 2015
1 parent ef6f2db commit de4a430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/osg/BoundingSphere
Original file line number Diff line number Diff line change
Expand Up @@ -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& cntr, value_type rad) : _center(cntr),_radius(rad) {}

/** Creates a bounding sphere initialized to the given extents. */
BoundingSphereImpl(const BoundingSphereImpl& bs) : _center(bs._center),_radius(bs._radius) {}
Expand Down

0 comments on commit de4a430

Please sign in to comment.