Ignore:
Timestamp:
11/13/06 23:41:00 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1744 r1745  
    441441 
    442442 
    443 /*template <typename T, typename S> void Pvs<T, S>::QuickMerge(const Pvs<T, S> &a) 
    444 { 
    445         const int samples = mSamples + a.mSamples; 
    446  
    447         std::vector<PvsEntry<T, S>> >::const_iterator it; 
    448  
    449         for (it = mEntries.begin(); it != mEntries.end(); ++ it) 
    450         { 
    451                 it->first->Mail(); 
    452         } 
    453  
    454     for (it = a.mEntries.begin(); it != a.mEntries.end(); ++ it) 
    455         { 
    456                 if (!it->first->Mailed()) 
    457                 { 
    458                         mEntries.push_back(*it); 
    459                 } 
    460         } 
    461  
    462         mSamples = samples; 
    463 }*/ 
    464  
    465  
    466443template <typename T, typename S> void Pvs<T, S>::Clear() 
    467444{ 
Note: See TracChangeset for help on using the changeset viewer.