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)."
This commit is contained in:
Robert Osfield
2009-06-18 08:18:10 +00:00
parent 73b423ad85
commit 17db679ff0

View File

@@ -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
{