Ignore:
Timestamp:
11/18/05 16:29:31 (19 years ago)
Author:
mattausch
Message:

worded on vspkdtree

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/VspKdTree.h

    r421 r422  
    258258        void UpdatePvsSize(); 
    259259 
    260         void Mail(); 
    261  
    262         bool Mailed() const; 
    263    
    264         bool Mailed(const int mail); 
    265  
    266260        /** Returns average contribution of a ray to the PVS 
    267261        */ 
     
    270264        */ 
    271265        inline float GetSqrRayContribution() const; 
     266 
     267        //-- mailing options 
     268 
     269        void Mail(); 
     270 
     271        bool Mailed() const; 
     272   
     273        bool Mailed(const int mail); 
    272274 
    273275        static void NewMail(); 
     
    520522 
    521523        // total number of nodes of the tree 
    522         int nodes; 
     524        int mNumNodes; 
    523525         
    524526        // axis aligned bounding box of the scene 
     
    526528 
    527529        // epsilon used for the construction 
    528         float epsilon; 
     530        float mEpsilon; 
    529531 
    530532        // ratio between traversal and intersection costs 
    531         float ct_div_ci; 
     533        float mCtDivCi; 
    532534         
    533535        // type of the splitting to use for the tree construction 
     
    536538         
    537539        // maximum alovable memory in MB 
    538         float maxTotalMemory; 
     540        float mMaxTotalMemory; 
    539541 
    540542        // maximum alovable memory for static kd tree in MB 
    541         float maxStaticMemory; 
     543        float mMaxStaticMemory; 
    542544 
    543545        // this is used during the construction depending 
    544546        // on the type of the tree and queries... 
    545         float maxMemory; 
     547        float mMaxMemory; 
    546548 
    547549        // minimal acess time for collapse 
    548         int accessTimeThreshold; 
     550        int mAccessTimeThreshold; 
    549551 
    550552        // minimal depth at which to perform collapse 
    551         int minCollapseDepth; 
     553        int mMinCollapseDepth; 
    552554         
    553555        // reusable array of split candidates 
    554         vector<SortableEntry> *splitCandidates; 
    555  
     556        vector<SortableEntry> *mSplitCandidates; 
    556557         
    557558        ///////////////////////////// 
     
    577578 
    578579 
     580        bool mOnlyDrivingAxis; 
    579581        ///////////////////////////// 
    580582        VspKdStatistics mStat;   
Note: See TracChangeset for help on using the changeset viewer.