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:19:37 +00:00
parent b1dbb9e96b
commit b795e65a39

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
{