Index: /OpenSceneGraph/trunk/examples/osgmanipulator/osgmanipulator.cpp
===================================================================
--- /OpenSceneGraph/trunk/examples/osgmanipulator/osgmanipulator.cpp (revision 12933)
+++ /OpenSceneGraph/trunk/examples/osgmanipulator/osgmanipulator.cpp (revision 13019)
@@ -34,4 +34,5 @@
 #include <osgManipulator/TranslateAxisDragger>
 #include <osgManipulator/TranslatePlaneDragger>
+#include <osgManipulator/RotateCylinderDragger>
 
 #include <osg/ShapeDrawable>
@@ -141,4 +142,16 @@
     {
         osgManipulator::Scale2DDragger* d = new osgManipulator::Scale2DDragger();
+        d->setupDefaultGeometry();
+        dragger = d;
+    }
+    else if ("RotateCylinderDragger" == name)
+    {
+        osgManipulator::RotateCylinderDragger* d = new osgManipulator::RotateCylinderDragger();
+        d->setupDefaultGeometry();
+        dragger = d;
+    }
+    else if ("RotateSphereDragger" == name)
+    {
+        osgManipulator::RotateSphereDragger* d = new osgManipulator::RotateSphereDragger();
         d->setupDefaultGeometry();
         dragger = d;
@@ -373,5 +386,5 @@
     arguments.getApplicationUsage()->addCommandLineOption("--help-all","Display all command line, env vars and keyboard & mouse bindings.");
 
-    arguments.getApplicationUsage()->addCommandLineOption("--dragger <draggername>","Use the specified dragger for manipulation [TabPlaneDragger, TabPlaneTrackballDragger, TrackballDragger, Translate1DDragger, Translate2DDragger, TranslateAxisDragger, TabBoxDragger, TranslatePlaneDragger, Scale1DDragger, Scale2DDragger]");
+    arguments.getApplicationUsage()->addCommandLineOption("--dragger <draggername>","Use the specified dragger for manipulation [TabPlaneDragger, TabPlaneTrackballDragger, TrackballDragger, Translate1DDragger, Translate2DDragger, TranslateAxisDragger, TabBoxDragger, TranslatePlaneDragger, Scale1DDragger, Scale2DDragger, RotateCylinderDragger, RotateSphereDragger]");
     arguments.getApplicationUsage()->addCommandLineOption("--fixedDraggerSize","Fix the size of the dragger geometry in the screen space");
     
