From 69caf104d89fce08ed13ab646a5f5f636568e28e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 12 Jul 2004 09:43:45 +0000 Subject: [PATCH] Reduced the pan sensitive on the trackball --- src/osgGA/TrackballManipulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgGA/TrackballManipulator.cpp b/src/osgGA/TrackballManipulator.cpp index f936a8ed1..03a444617 100644 --- a/src/osgGA/TrackballManipulator.cpp +++ b/src/osgGA/TrackballManipulator.cpp @@ -272,7 +272,7 @@ bool TrackballManipulator::calcMovement() // pan model. - float scale = -0.5f*_distance; + float scale = -0.3f*_distance; osg::Matrix rotation_matrix; rotation_matrix.set(_rotation);