当前位置: 首页>>代码示例>>C++>>正文


C++ PagedLOD::getUserData方法代码示例

本文整理汇总了C++中osg::PagedLOD::getUserData方法的典型用法代码示例。如果您正苦于以下问题:C++ PagedLOD::getUserData方法的具体用法?C++ PagedLOD::getUserData怎么用?C++ PagedLOD::getUserData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在osg::PagedLOD的用法示例。


在下文中一共展示了PagedLOD::getUserData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: apply

 virtual void apply(osg::PagedLOD& node)
 {        
     //The PagedLOD node will contain two filenames, the first is empty and is the actual geometry of the          
     //tile and the second is the filename of the next tile.
     if (node.getNumFileNames() > 1)
     {
         //Get the child filename
         const std::string &filename = node.getFileName(1);              
         if (osgEarth::Registry::instance()->isBlacklisted(filename))
         {
             //If the tile is blacklisted, we set the actual geometry, child 0, to always display
             //and the second child to never display
             node.setRange(0, 0, FLT_MAX);
             node.setRange(1, FLT_MAX, FLT_MAX);
         }
         else
         {
             //If the child is not blacklisted, it is possible that it could have been blacklisted previously so reset the
             //ranges of both the first and second children.  This gives the second child another
             //chance to be traversed in case a layer was added that might have data.
             osg::ref_ptr< MapNode::TileRangeData > ranges = static_cast< MapNode::TileRangeData* >(node.getUserData());
             if (ranges)
             {
                 node.setRange(0, ranges->_minRange, ranges->_maxRange);
                 node.setRange(1, 0, ranges->_minRange);
             }                  
         }
         
     }
     traverse(node);
 }
开发者ID:ender35,项目名称:osgearth,代码行数:31,代码来源:MapNode.cpp


注:本文中的osg::PagedLOD::getUserData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。