Something quick and easy would be to calculate a new position for your camera 
on each frame and set the view matrix as part of a frame() loop.

while(!myViewer->done())
{
myViewer->getCamera()->setViewMatrix(whatever it should be this frame);
myViewer->frame();
}

Cheers,
Tom

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=31114#31114





_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to