Ignore:
Timestamp:
12/04/06 23:32:28 (18 years ago)
Author:
mattausch
Message:

improved object pvs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r1843 r1845  
    46054605        cout << ss << endl; 
    46064606         
    4607  
    46084607        if (0) CompressViewCells(); 
    46094608         
     
    61626161 
    61636162 
     6163void VspOspViewCellsManager::CompressViewCells() 
     6164{ 
     6165        ViewCellsManager::CompressViewCells(); 
     6166        return; 
     6167        //////////// 
     6168        //-- compression 
     6169 
     6170        if (ViewCellsTreeConstructed() && mCompressViewCells) 
     6171        { 
     6172                int pvsEntries = mViewCellsTree->CountStoredPvsEntries(mViewCellsTree->GetRoot()); 
     6173                 
     6174                cout << "compressing in the objects" << endl; 
     6175                cout << "number of entries before compress: " << pvsEntries << endl; 
     6176                Debug << "number of entries before compress: " << pvsEntries << endl; 
     6177 
     6178                pvsEntries = mHierarchyManager->CompressObjectSpace(); 
     6179                 
     6180                Debug << "number of entries after compress: " << pvsEntries << endl; 
     6181                cout << "number of entries after compress: " << pvsEntries << endl; 
     6182        } 
     6183} 
     6184 
     6185 
    61646186ViewCellsManager *VspOspViewCellsManager::LoadViewCells(const string &filename,  
    61656187                                                                                                                ObjectContainer *objects, 
Note: See TracChangeset for help on using the changeset viewer.