Changeset 2259 for GTP/trunk/Lib/Vis/OnlineCullingCHC/include
- Timestamp:
- 03/18/07 01:27:51 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/OnlineCullingCHC/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/include/HierarchyInterface.h
r2258 r2259 163 163 virtual void TraverseNode2(GtpVisibility::HierarchyNode *node) = 0; 164 164 165 virtual HierarchyNode *GetRandomLeaf( ) = 0;166 virtual bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const ;165 virtual HierarchyNode *GetRandomLeaf(HierarchyNode *root) = 0; 166 virtual bool IsNodeFullyVisible(GtpVisibility::HierarchyNode *node) const = 0; 167 167 168 168 protected: -
GTP/trunk/Lib/Vis/OnlineCullingCHC/include/RandomUpdateCullingManager.h
r2258 r2259 30 30 31 31 protected: 32 32 33 /** Decides if node is considered to be visible depeding on the 33 34 assumed visibility factor. … … 35 36 */ 36 37 bool DecideVisible(HierarchyNode *node) const; 37 38 38 39 39 /** Skip query for this node. … … 45 45 unsigned int mAssumedVisibility; 46 46 47 /** Threshold for rand function to return positive result with respect to48 mAssumedVisibility.47 /** Threshold for rand function to return positive result 48 with respect to mAssumedVisibility. 49 49 */ 50 50 int mThreshold; 51 52 int mRandomCandidates; 51 53 }; 52 54
Note: See TracChangeset
for help on using the changeset viewer.