Ignore:
Timestamp:
01/17/06 23:28:10 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.cpp

    r520 r547  
    1111mPiercingRays(0), 
    1212mArea(0), 
    13 mVolume(0) 
     13mVolume(0), 
     14mValid(true) 
    1415{ 
    1516} 
     
    1920mPiercingRays(0), 
    2021mArea(0), 
    21 mVolume(0) 
     22mVolume(0), 
     23mValid(true) 
    2224{ 
    2325} 
     
    9698 
    9799 
     100void ViewCell::SetValid(const bool valid) 
     101{ 
     102        mValid = true; 
     103} 
     104 
     105 
     106bool ViewCell::GetValid() const 
     107{ 
     108        return mValid; 
     109} 
     110 
     111 
    98112/************************************************************************/ 
    99113/*                class ViewCellsStatistics implementation              */ 
Note: See TracChangeset for help on using the changeset viewer.