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


C++ Node::getNumParents方法代码示例

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


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

示例1:

void
ShaderGenerator::duplicateSharedNode(osg::Node& node)
{
    if ( node.getNumParents() > 1 )
    {
        for(int i=1; i<(int)node.getNumParents(); ++i)
        {
            osg::Group* parent = node.getParent(i);
            osg::Node* replicant = osg::clone(
                &node, 
                osg::CopyOp::DEEP_COPY_NODES | osg::CopyOp::DEEP_COPY_DRAWABLES | osg::CopyOp::DEEP_COPY_ARRAYS);
            parent->replaceChild(&node, replicant);
        }
    }
}
开发者ID:rhabacker,项目名称:osgearth,代码行数:15,代码来源:ShaderGenerator.cpp

示例2: vc

void
OcclusionQueryVisitor::addOQN( osg::Node& node )
{
    VertexCounter vc( _occluderThreshold );
    node.accept( vc );
    if (vc.exceeded())
    {
        // Insert OQN(s) above this node.
        unsigned int np = node.getNumParents();
        while (np--)
        {
            osg::Group* parent = dynamic_cast<osg::Group*>( node.getParent( np ) );
            if (parent != NULL)
            {
                osg::ref_ptr<osg::OcclusionQueryNode> oqn = new osg::OcclusionQueryNode();
                oqn->addChild( &node );
                parent->replaceChild( &node, oqn.get() );

                oqn->setName( getNextOQNName() );
                // Set all OQNs to use the same query StateSets (instead of multiple copies
                //   of the same StateSet) for efficiency.
                oqn->setQueryStateSet( _state.get() );
                oqn->setDebugStateSet( _debugState.get() );
            }
        }
    }
}
开发者ID:joevandyk,项目名称:osg,代码行数:27,代码来源:osgocclusionquery.cpp

示例3: apply

  virtual void apply(osg::Node& node)
  {
      if (node.getNumParents()==0 || &node==_haltTraversalAtNode)
      {
          _nodePaths.push_back(getNodePath());
      }
      else
      {
          traverse(node);
      }
 }
开发者ID:bouffa,项目名称:osg,代码行数:11,代码来源:Node.cpp

示例4: apply

 virtual void apply( osg::Node& node )
 {
     if( ( node.getNumParents() == 0 ) ||
             ( &node == m_stopNode.get() ) )
     {
         _finalNodePath = getNodePath();
     }
     else
     {
         osg::NodeVisitor::traverse( node );
     }
 }
开发者ID:yaroslav-tarasov,项目名称:backdropfx,代码行数:12,代码来源:ves.cpp

示例5: apply

void GetWorldCoorOfNode::apply(osg::Node & node)
{
	if (!done)
	{
		if ( 0 == node.getNumParents() ) // no parents
		{
			wcMatrix->set( osg::computeLocalToWorld(this->getNodePath()) );
			done = true;
		}
		traverse(node);
	}
}
开发者ID:marcoag,项目名称:orol,代码行数:12,代码来源:getworldcoorofnode.cpp

示例6: apply

 virtual void apply(osg::Node &node)
 {
     if ( 0 == node.getNumParents() ) // no parents
         wcMatrix.set( osg::computeLocalToWorld(this->getNodePath()) );
     traverse(node);
 }
开发者ID:arneboe,项目名称:gui-vizkit3d,代码行数:6,代码来源:TransformerGraph.cpp


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