From Paul Martz, "minor code comment cleaup/rewording"

This commit is contained in:
Robert Osfield 2006-12-19 17:16:14 +00:00
parent c9c2950759
commit d9d3b99c2e

View File

@ -40,8 +40,8 @@ class OSG_EXPORT NodeCallback : public virtual Object {
virtual void operator()(Node* node, NodeVisitor* nv)
{
// note, callback is responsible for scenegraph traversal so
// should always include call traverse(node,nv) to ensure
// that the rest of cullbacks and the scene graph are traversed.
// they must call traverse(node,nv) to ensure that the
// scene graph subtree (and associated callbacks) are traversed.
traverse(node,nv);
}