Changeset 10448 for OpenSceneGraph/trunk/examples/osgvolume/osgvolume.cpp
- Timestamp:
- 07/03/09 07:54:27 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgvolume/osgvolume.cpp
r10444 r10448 57 57 58 58 #include <osgManipulator/TabBoxDragger> 59 #include <osgManipulator/TabPlaneTrackballDragger> 60 #include <osgManipulator/TrackballDragger> 59 61 60 62 #include <osg/io_utils> … … 827 829 case osgManipulator::MotionCommand::FINISH: 828 830 { 829 _volume->setDirty(true);830 831 831 return true; 832 832 } … … 1471 1471 osg::ref_ptr<osg::Group> group = new osg::Group; 1472 1472 1473 osg::ref_ptr<osgManipulator::TabBoxDragger> dragger = new osgManipulator::TabBoxDragger; 1473 #if 1 1474 osg::ref_ptr<osgManipulator::Dragger> dragger = new osgManipulator::TabBoxDragger; 1475 #else 1476 osg::ref_ptr<osgManipulator::Dragger> dragger = new osgManipulator::TrackballDragger(); 1477 #endif 1474 1478 dragger->setupDefaultGeometry(); 1475 1479 dragger->setHandleEvents(true);
