Hi,
I created a simple scene graph as shown below,
osg::ref_ptr<osg::Group> grp=new osg::Group;
for(i=1;i<=n_models;i++)
{
osg::ref_ptr <osg:::PagedLOD> plod=new osg::PagedLOD;
plod->setFile(argv[i]);
plod->setRangeMode(...DISTANCE FROM EYE...);
plod->setRange(0,50.f,100.f);
grp->addChild(plod.get());
}
In this same fashion I am adding more number of terrain models(on virtual
earth) lying close to each other. The problem here is that If I zoom down to
the range , I am getting jerky display even though I have used pagedLOD. Please
clarify me.
Thank you.
------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=10494#10494
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org