From 78229df14a0166d7c99a9a4bca4504538b25b06e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 3 Jul 2009 05:52:52 +0000 Subject: [PATCH] Added setUpGeometry to Dragger base class to make it easier to use draggers interchangably. --- include/osgManipulator/Dragger | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/osgManipulator/Dragger b/include/osgManipulator/Dragger index 7e729d382..f7b734059 100644 --- a/include/osgManipulator/Dragger +++ b/include/osgManipulator/Dragger @@ -247,6 +247,9 @@ class OSGMANIPULATOR_EXPORT Dragger : public osg::MatrixTransform void addTransformUpdating(MatrixTransform* transform); void removeTransformUpdating(MatrixTransform* transform); + /** Setup default geometry for dragger. */ + virtual void setupDefaultGeometry() {} + protected: Dragger();