Ignore:
Timestamp:
11/10/06 02:09:56 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1737 r1738  
    24752475  Intersectable::NewMail(); 
    24762476   
    2477   ObjectPvsMap::const_iterator oi; 
     2477  ObjectPvsEntries::const_iterator oi; 
    24782478   
    24792479  for (oi = pvs.mEntries.begin(); oi != pvs.mEntries.end(); ++ oi)  
     
    25272527 
    25282528  Intersectable::NewMail(); 
    2529   ObjectPvsMap::const_iterator oi; 
     2529  ObjectPvsEntries::const_iterator oi; 
    25302530  // first mark all object from this pvs 
    25312531  for (oi = pvs.mEntries.begin(); oi != pvs.mEntries.end(); ++ oi) { 
     
    25372537  int pvsSize = 0; 
    25382538  int nPvsSize = 0; 
    2539   float samples = pvs.mSamples; 
     2539  float samples = (float)pvs.mSamples; 
    25402540  cout<<"Samples = "<<samples<<endl; 
    25412541  //  cout<<"Filter size = "<<filterSize<<endl; 
     
    25952595 
    25962596        // update samples and globalC 
    2597         samples = pvs.mSamples; 
     2597        samples = (float)pvs.mSamples; 
    25982598        globalC = 2.0f*filterSize/sqrt(samples); 
    25992599        cout<<"neighboring viewcells = "<<i-1<<endl; 
     
    27802780        for (vit = interior->mChildren.begin(); vit != vit_end; ++ vit, ++ oit) 
    27812781        { 
    2782             ObjectPvsMap::iterator pit, pit_end = (*oit).mEntries.end(); 
     2782            ObjectPvsEntries::iterator pit, pit_end = (*oit).mEntries.end(); 
    27832783         
    27842784                for (pit = (*oit).mEntries.begin(); pit != pit_end; ++ pit) 
     
    32683268                { 
    32693269                        Intersectable::NewMail(); 
    3270                         ObjectPvsMap::const_iterator oit, oit_end = pvs.mEntries.end(); 
     3270                        ObjectPvsEntries::const_iterator oit, oit_end = pvs.mEntries.end(); 
    32713271                         
    32723272                        // output PVS of view cell 
     
    37693769                        exporter->SetFilled(); 
    37703770 
    3771                         ObjectPvsMap::iterator it, it_end = vc->GetPvs().mEntries.end(); 
     3771                        ObjectPvsEntries::iterator it, it_end = vc->GetPvs().mEntries.end(); 
    37723772                        // -- output PVS of view cell 
    37733773                        for (it = vc->GetPvs().mEntries.begin(); it != it_end; ++ it) 
     
    46174617                        Intersectable::NewMail(); 
    46184618 
    4619                         ObjectPvsMap::const_iterator oit, oit_end = pvs.mEntries.end(); 
     4619                        ObjectPvsEntries::const_iterator oit, oit_end = pvs.mEntries.end(); 
    46204620                        cout << endl; 
    46214621                        // output PVS of view cell 
     
    54485448 
    54495449                        Intersectable::NewMail(); 
    5450                         ObjectPvsMap::const_iterator oit, oit_end = pvs.mEntries.end(); 
     5450                        ObjectPvsEntries::const_iterator oit, oit_end = pvs.mEntries.end(); 
    54515451                         
    54525452                        // output PVS of view cell 
Note: See TracChangeset for help on using the changeset viewer.