Thanks for fix the Chris, now merged and submitted to SVN.

On Wed, Oct 15, 2008 at 10:30 AM, Chris Denham <[EMAIL PROTECTED]> wrote:
> I noticed that UFOManipulator _matrix and _inverseMatrix may be
> inconsistently set due to typo in
> UFOManipulator::home().
> I assume the intention is that _matrix and _inverseMatrix are kept
> consistent, so corrected file attached.
>
> ///////////// OSG 2.6 //////////////////
>   _inverseMatrix.makeLookAt( _homeEye, _homeCenter, _homeUp );
>   _matrix.invert( _matrix );
> ///////////// after typo correction /////////////////
>  _inverseMatrix.makeLookAt( _homeEye, _homeCenter, _homeUp );
>   _matrix.invert( _inverseMatrix );
> ///////////////////////////////////////
>
> Chris.
>
> _______________________________________________
> osg-submissions mailing list
> [email protected]
> http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
>
>
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to