On 5/29/07, Jeremy L. Moles <[EMAIL PROTECTED]> wrote:
Don Burns set these up (perhaps even just today); I'm sure this is where
you'll find the most help...
http://andesengineering.com/mailman/listinfo/osg-ephemeris
...however, I can tell just from looking that the code isn't valid; it's
attempting to construct a new Matrixf object locally using a pointer,
and there are no methods to support this in the Matrixf class.
To:
osg::Matrixf m = cv->getModelViewMatrix(); (THIS IS
LINE 135!!!)
Just add a *...
osg::Matrixf m = *(cv->getModelViewMatrix()); (should
fix it :-)
_______________________________________________
osg-users mailing list
[email protected]
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/