Ignore:
Timestamp:
02/01/06 19:29:59 (18 years ago)
Author:
mattausch
Message:

implemented variance
started implementing merge history

File:
1 edited

Legend:

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

    r574 r580  
    208208 
    209209 
    210 /******************************************************************/ 
    211 /*                    class BspTree implementation                */ 
    212 /******************************************************************/ 
     210/*********************************************************************/ 
     211/*                       class BspTree implementation                */ 
     212/*********************************************************************/ 
    213213 
    214214BspTree::BspTree():   
     
    840840                 
    841841                leaf->SetViewCell(viewCell); 
    842                 viewCell->mLeaves.push_back(leaf); 
     842                viewCell->mLeaf = leaf; 
    843843 
    844844                //-- add pvs 
     
    22082208void BspTree::ConstructGeometry(BspViewCell *vc, BspNodeGeometry &geom) const 
    22092209{ 
    2210         vector<BspLeaf *> leaves = vc->mLeaves; 
     2210        // TODO 
     2211/*      vector<BspLeaf *> leaves = vc->mLeaves; 
    22112212 
    22122213        vector<BspLeaf *>::const_iterator it, it_end = leaves.end(); 
    22132214 
    22142215        for (it = leaves.begin(); it != it_end; ++ it) 
    2215                 ConstructGeometry(*it, geom); 
     2216                ConstructGeometry(*it, geom);*/ 
    22162217} 
    22172218 
Note: See TracChangeset for help on using the changeset viewer.