I think I mean what you said ( almost exactly ).

Specifically, I want to compare common node and proxy node.

Namely, I want to compare the code above and the code below.


Code:
#include <osg/ProxyNode>
#include <osgViewer/Viewer>

int main( int argc, char** argv )
{
        osg::ref_ptr<osg::ProxyNode> root = new osg::ProxyNode;

        root->setFileName( 0, "cow.osg" );

        osgViewer::Viewer viewer;
        viewer.setSceneData( root.get() );

        return viewer.run();
}



Thank you for your interest despite my poor English. :)

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





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

Reply via email to