Changeset 2259 for GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include
- Timestamp:
- 03/18/07 01:27:51 (18 years ago)
- 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 97 97 void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 98 98 bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 99 GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 99 100 }; 100 101 -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreKdTreeHierarchyInterface.h
r2258 r2259 96 96 void DetermineFullVisibility(GtpVisibility::HierarchyNode *node) const {} 97 97 98 void TraverseNode2(GtpVisibility::HierarchyNode *node) ;98 void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 99 99 100 HierarchyNode *GetRandomLeaf() { return NULL;}100 GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 101 101 102 102 bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 103 103 104 }; 104 105 -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreOctreeHierarchyInterface.h
r2258 r2259 55 55 void TraverseNode2(GtpVisibility::HierarchyNode *node); 56 56 57 HierarchyNode *GetRandomLeaf();57 GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *node); 58 58 59 59 bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const; 60 60 61 void RenderNodeRecursive(GtpVisibility::HierarchyNode *node); 62 63 61 64 protected: 65 62 66 /** Returns pointer to the bounding box of the node. 63 67 @param node current hierarchy node -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreSceneNodeHierarchyInterface.h
r2258 r2259 48 48 void DetermineFullVisibility(GtpVisibility::HierarchyNode *node) const {} 49 49 void TraverseNode2(GtpVisibility::HierarchyNode *node) {} 50 HierarchyNode *GetRandomLeaf() { return NULL;}50 GtpVisibility::HierarchyNode *GetRandomLeaf(GtpVisibility::HierarchyNode *root) { return NULL;} 51 51 bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const { return false;} 52 52
Note: See TracChangeset
for help on using the changeset viewer.