初学OSG几乎没有C语言基础,老师布置了一篇期末作业还有10天就要交了。
我们作业的第一步是要 Print out a list of all the nodes in the console window,
我看同学写的代码
class nodePrinter : public osg::NodeVisitor
{
public:
nodePrinter() : osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN) {};
virtual void apply(osg::Node &node)
{
int numberOfParentNodes = node.getParentalNodePaths()[0].size();