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

Legend:

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

    r2258 r2259  
    163163        virtual void TraverseNode2(GtpVisibility::HierarchyNode *node) = 0; 
    164164 
    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; 
    167167 
    168168protected: 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/include/RandomUpdateCullingManager.h

    r2258 r2259  
    3030 
    3131protected: 
     32 
    3233        /** Decides if node is considered to be visible depeding on the  
    3334                assumed visibility factor. 
     
    3536        */ 
    3637        bool DecideVisible(HierarchyNode *node) const; 
    37  
    3838 
    3939        /** Skip query for this node. 
     
    4545        unsigned int mAssumedVisibility; 
    4646 
    47         /** Threshold for rand function to return positive result with respect to 
    48                 mAssumedVisibility. 
     47        /** Threshold for rand function to return positive result  
     48                with respect to mAssumedVisibility. 
    4949        */ 
    5050        int mThreshold; 
     51 
     52        int mRandomCandidates; 
    5153}; 
    5254 
Note: See TracChangeset for help on using the changeset viewer.