From 5faeead2c688aa6447a8993326117295039f6686 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 27 Jul 2007 17:14:51 +0000 Subject: [PATCH] From Bryan Thrall, added copying of boundingbox callback to copy constructor. --- src/osg/Drawable.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osg/Drawable.cpp b/src/osg/Drawable.cpp index 1029e2205..b7c0610ba 100644 --- a/src/osg/Drawable.cpp +++ b/src/osg/Drawable.cpp @@ -269,6 +269,7 @@ Drawable::Drawable(const Drawable& drawable,const CopyOp& copyop): _parents(), // leave empty as parentList is managed by Geode _stateset(copyop(drawable._stateset.get())), _initialBound(drawable._initialBound), + _computeBoundCallback(drawable._computeBoundCallback), _boundingBox(drawable._boundingBox), _boundingBoxComputed(drawable._boundingBoxComputed), _shape(copyop(drawable._shape.get())),