Ignore:
Timestamp:
06/14/06 11:02:34 (18 years ago)
Author:
mattausch
Message:

worked on view space / object space partition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/VspBspTree.h

    r1006 r1016  
    130130                {} 
    131131 
    132                 /** Returns cost of the traversal data. 
     132                /** Returns priority of the traversal data. 
    133133                */ 
    134134                float GetCost() const 
     
    167167                // parent data 
    168168                VspBspTraversalData mParentData; 
    169                 // cost of applying this split 
     169                // prioriry of this split 
    170170                float mRenderCost; 
    171171 
     
    183183#if 1 
    184184                        return mRenderCost; 
    185 #endif 
    186 #if 0 
     185#else 
    187186                        return (float) (-mDepth); // for kd tree 
    188187#endif 
     
    221220                a certain threshold. 
    222221                @param onlyUnmailed if only the unmailed leaves should be considered 
    223                 @param maxPvs the maximal pvs (-1 means unlimited) 
     222                @param maxPvs the maximal pvs of a leaf to be added (-1 means unlimited) 
    224223        */ 
    225224        void CollectLeaves(vector<BspLeaf *> &leaves,  
     
    359358        int ComputeBoxIntersections(const AxisAlignedBox3 &box, ViewCellContainer &viewCells) const; 
    360359 
    361         // pointer to the hierarchy of view cells 
     360        /// pointer to the hierarchy of view cells 
    362361        ViewCellsTree *mViewCellsTree; 
    363362 
Note: See TracChangeset for help on using the changeset viewer.