Ignore:
Timestamp:
08/22/07 14:27:41 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2544 r2547  
    550550        */  
    551551        VspTree(); 
     552        /** Constructor just setting the bounds of the tree. 
     553        */  
     554        VspTree(const AxisAlignedBox3 &bbox); 
    552555        /** Default destructor. 
    553556        */ 
     
    706709                } 
    707710        }; 
    708  
     711        /** Parse the environment settings. 
     712        */ 
     713        void ParseEnvironment(); 
    709714        /** faster evaluation of split plane cost for kd axis aligned cells. 
    710715        */ 
     
    754759        */ 
    755760        void EvaluateLeafStats(const VspTraversalData &data); 
    756  
    757761        /** Subdivides node using a best split priority queue. 
    758762            @param tQueue the best split priority queue 
     
    804808        */ 
    805809        float EvalPvsCost(const RayInfoContainer &rays) const; 
    806  
     810        /** Helper function for split cost evaluation. 
     811        */ 
    807812        int EvalPvsEntriesIncr(VspSubdivisionCandidate &splitCandidate, 
    808813                                                   const SplitData &sData) const; 
     
    10841089 
    10851090#endif 
    1086  
    1087  
    1088         friend ViewCellsManager *LoadViewCellsBinary(const std::string &filename,  
    1089                                                                                      ObjectContainer &pvsObjects, 
    1090                                                                                                  bool finalizeViewCells, 
    1091                                                                                                  BoundingBoxConverter *bconverter); 
     1091         
    10921092 
    10931093protected: 
Note: See TracChangeset for help on using the changeset viewer.