Ignore:
Timestamp:
12/16/05 18:52:33 (19 years ago)
Author:
mattausch
Message:

updated view cells, view cell manager. changed rendersimulator

File:
1 edited

Legend:

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

    r468 r469  
    776776 
    777777                leaf->SetViewCell(viewCell); 
    778                 viewCell->mBspLeaves.push_back(leaf); 
     778                viewCell->mLeaves.push_back(leaf); 
    779779 
    780780                //-- add pvs 
     
    20362036                                        vcStat.minPvs = pvsSize; 
    20372037 
    2038                                 if ((int)viewCell->mBspLeaves.size() > vcStat.maxLeaves) 
    2039                                         vcStat.maxLeaves = (int)viewCell->mBspLeaves.size();             
     2038                                if ((int)viewCell->mLeaves.size() > vcStat.maxLeaves) 
     2039                                        vcStat.maxLeaves = (int)viewCell->mLeaves.size();                
    20402040                        } 
    20412041                } 
     
    21762176void BspTree::ConstructGeometry(BspViewCell *vc, PolygonContainer &cell) const 
    21772177{ 
    2178         vector<BspLeaf *> leaves = vc->mBspLeaves; 
     2178        vector<BspLeaf *> leaves = vc->mLeaves; 
    21792179 
    21802180        vector<BspLeaf *>::const_iterator it, it_end = leaves.end(); 
Note: See TracChangeset for help on using the changeset viewer.