Ignore:
Timestamp:
01/17/06 23:28:10 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r545 r547  
    130130        int maxRayContribNodes; 
    131131        // minimum area nodes 
    132         int minAreaNodes; 
     132        int minProbabilityNodes; 
    133133        /// nodes termination because of max cost ratio; 
    134134        int maxCostNodes; 
     
    181181                minRaysNodes = 0; 
    182182                maxRayContribNodes = 0; 
    183                 minAreaNodes = 0; 
     183                minProbabilityNodes = 0; 
    184184                maxCostNodes = 0; 
    185185 
     
    310310/** BSP leaf node implementation. 
    311311*/ 
    312 class BspLeaf : public BspNode  
     312class BspLeaf: public BspNode  
    313313{ 
    314314        friend class BspTree; 
     
    340340        ObjectPvs *mPvs; 
    341341 
    342         /// leaf area 
    343         float mArea; 
     342        /// Probability that the view point lies in this leaf 
     343        float mProbability; 
    344344 
    345345protected: 
     
    886886 
    887887        /// if area or accumulated ray lenght should be used for PVS heuristics 
    888         bool mPvsUseArea; 
     888        bool mUseAreaForPvs; 
    889889 
    890890        /// epsilon where two points are still considered equal 
Note: See TracChangeset for help on using the changeset viewer.