Changeset 2575 for GTP/trunk/Lib/Vis/Preprocessing/src/VssTree.h
- Timestamp:
- 01/03/08 15:53:44 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/VssTree.h
r2176 r2575 493 493 }; 494 494 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); 498 496 499 497 }; … … 504 502 parent(p), axis(-1), depth(p ? p->depth + 1 : 0) {} 505 503 506 504 inline bool GreaterContribution(const VssTreeLeaf * a, const VssTreeLeaf *b) { 505 return a->GetAvgRayContribution() > b->GetAvgRayContribution(); 506 } 507 507 508 508 509 // ---------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.