Ignore:
Timestamp:
01/20/06 22:32:51 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r557 r562  
    6060                /// how often this branch has missed the max-cost ratio 
    6161                int mMaxCostMisses; 
     62                /// if this node is a kd-node (i.e., boundaries are axis aligned 
     63                bool mIsKdNode; 
    6264                /// bounding box of current view space. 
    6365                ///AxisAlignedBox3 mBbox; 
     
    7981                mProbability(0.0), 
    8082                mGeometry(NULL), 
    81                 mMaxCostMisses(0) 
    82                 //,mIsAxisAligned(false) 
     83                mMaxCostMisses(0),  
     84                mIsKdNode(false) 
    8385                {} 
    8486                 
     
    9799                mProbability(p), 
    98100                mGeometry(geom), 
    99                 mMaxCostMisses(0) 
     101                mMaxCostMisses(0), 
     102                mIsKdNode(false) 
    100103                {} 
    101104 
     
    111114                mProbability(0), 
    112115                mGeometry(geom), 
    113                 mMaxCostMisses(0) 
     116                mMaxCostMisses(0), 
     117                mIsKdNode(false) 
    114118                {} 
    115119 
Note: See TracChangeset for help on using the changeset viewer.