Ignore:
Timestamp:
01/03/08 15:53:44 (17 years ago)
Author:
bittner
Message:

big merge: preparation for havran ray caster, check if everything works

File:
1 edited

Legend:

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

    r2176 r2575  
    493493  }; 
    494494   
    495   friend bool GreaterContribution(const VssTreeLeaf * a, const VssTreeLeaf *b) { 
    496         return a->GetAvgRayContribution() > b->GetAvgRayContribution(); 
    497   } 
     495  friend bool GreaterContribution(const VssTreeLeaf * a, const VssTreeLeaf *b); 
    498496   
    499497}; 
     
    504502  parent(p), axis(-1), depth(p ? p->depth + 1 : 0) {} 
    505503 
    506  
     504inline bool GreaterContribution(const VssTreeLeaf * a, const VssTreeLeaf *b) { 
     505  return a->GetAvgRayContribution() > b->GetAvgRayContribution(); 
     506} 
     507   
    507508 
    508509// --------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.