Changeset 318 for trunk/VUT/GtpVisibility/include
- Timestamp:
- 10/11/05 19:25:27 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibility/include/VisibilityInfo.h
r316 r318 30 30 void SetProjectedPixels(int vis); 31 31 32 /** Computes ratio of visible to projected pixels. */ 32 /** Computes ratio of visible to projected pixels. 33 */ 33 34 float ComputeRelativeVisibility(); 34 35 … … 39 40 */ 40 41 void AddVisibility(const int visiblePixels, const int projectedPixels); 42 43 bool operator<(const VisibilityInfo<T> &b) const 44 { 45 return mSource < b.mSource; 46 } 47 48 bool operator==(const VisibilityInfo<T> &b) const 49 { 50 return mSource == b.mSource; 51 } 41 52 42 53 protected:
Note: See TracChangeset
for help on using the changeset viewer.