Changeset 8435

Show
Ignore:
Timestamp:
06/12/08 19:50:08
Author:
robert
Message:

Fixed typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenSceneGraph-TrainingMaterials/trunk/Sources/Exercises/09_traversers/9b_NodeVisitor/9b_NodeVisitor.cpp

    r8268 r8435  
    1010     
    1111    // 1. Following on from 9a_ManualTraversal 
    12     //    write a custom NodeVisitor that out 
     12    //    write a custom NodeVisitor that print out 
    1313    //    class node types encounted as one  
    1414    //    traveses through all nodes in a scene graph 
     
    2222    // 4. Discuss how the custom NodeVisitor will 
    2323    //    cope with Node types that are unknown to it. 
    24     // 
     24     
    2525    // 5. Discuss how one can implement apply(..) methods 
    2626    //    for classes not listed in the NodeVisitor base class.