Ignore:
Timestamp:
03/18/07 01:27:51 (18 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreBvHierarchyInterface.h

    r2258 r2259  
    9797        void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 
    9898        bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 
     99        GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 
    99100}; 
    100101 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreKdTreeHierarchyInterface.h

    r2258 r2259  
    9696        void DetermineFullVisibility(GtpVisibility::HierarchyNode *node) const {} 
    9797 
    98         void TraverseNode2(GtpVisibility::HierarchyNode *node); 
     98        void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 
    9999 
    100         HierarchyNode *GetRandomLeaf() { return NULL;} 
     100        GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 
    101101 
    102102        bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 
     103 
    103104}; 
    104105 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreOctreeHierarchyInterface.h

    r2258 r2259  
    5555        void TraverseNode2(GtpVisibility::HierarchyNode *node); 
    5656 
    57         HierarchyNode *GetRandomLeaf(); 
     57        GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *node); 
    5858 
    5959        bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const; 
    6060 
     61        void RenderNodeRecursive(GtpVisibility::HierarchyNode *node); 
     62 
     63 
    6164protected: 
     65 
    6266        /** Returns pointer to the bounding box of the node. 
    6367                @param node current hierarchy node 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreSceneNodeHierarchyInterface.h

    r2258 r2259  
    4848        void DetermineFullVisibility(GtpVisibility::HierarchyNode *node) const {} 
    4949        void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 
    50         HierarchyNode *GetRandomLeaf() { return NULL;} 
     50        GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 
    5151        bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 
    5252 
Note: See TracChangeset for help on using the changeset viewer.