From 7fdf18a7687cf3e8dc0c6a18fd4bf9a75aee941f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 12 Jul 2004 09:17:21 +0000 Subject: [PATCH] Reduced the sensitivity of the pan. --- src/osgGA/TerrainManipulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgGA/TerrainManipulator.cpp b/src/osgGA/TerrainManipulator.cpp index 4efa1c1f3..46c7e474b 100644 --- a/src/osgGA/TerrainManipulator.cpp +++ b/src/osgGA/TerrainManipulator.cpp @@ -436,7 +436,7 @@ bool TerrainManipulator::calcMovement() { // pan model. - double scale = -0.5f*_distance; + double scale = -0.3f*_distance; osg::Matrix rotation_matrix; rotation_matrix.set(_rotation);