From 17db679ff05de403f6a5a4f8ca880e42d6ff1672 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 18 Jun 2009 08:18:10 +0000 Subject: [PATCH] From Rene Molenaar, "The bug is as described above: "The dragger's corner tabs are no longer in the corners." this fix places the cornertabs back in the corners. (the manipulator does not make sense otherwise)." --- src/osgManipulator/AntiSquish.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgManipulator/AntiSquish.cpp b/src/osgManipulator/AntiSquish.cpp index 18112624b..5f3afd717 100644 --- a/src/osgManipulator/AntiSquish.cpp +++ b/src/osgManipulator/AntiSquish.cpp @@ -148,9 +148,9 @@ osg::Matrix AntiSquish::computeUnSquishedMatrix(const osg::Matrix& LTW, bool& fl // Position if (_usePosition) - unsquished.postMult(_position); + unsquished.postMultTranslate(_position); else - unsquished.postMult(_pivot); + unsquished.postMultTranslate(_pivot); } else {