void CountsVisitor::apply(osg::Sequence& node) { pushStateSet(node.getStateSet()); _sequences++; osg::ref_ptr<osg::Object> rp = (osg::Object*)&node; _uSequences.insert(rp); _totalChildren += node.getNumChildren(); apply(node.getStateSet()); if (++_depth > _maxDepth) _maxDepth = _depth; traverse((osg::Node&)node); _depth--; popStateSet(); }
void FltExportVisitor::apply( osg::Sequence& node ) { _firstNode = false; ScopedStatePushPop guard( this, node.getStateSet() ); writeSequence( node ); writeMatrix( node.getUserData() ); writeComment( node ); writePushTraverseWritePop( node ); }