Ignore:
Timestamp:
03/06/06 09:17:09 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellBsp.cpp

    r667 r675  
    980980                viewCell->mLeaf = leaf; 
    981981 
     982                float probability = max(0.0f, tData.mProbability); 
     983 
    982984                if (mUseAreaForPvs) 
    983                         viewCell->SetArea(tData.mProbability); 
     985                        viewCell->SetArea(probability); 
    984986                else 
    985                         viewCell->SetVolume(tData.mProbability); 
    986                  
     987                        viewCell->SetVolume(probability); 
     988 
    987989                //-- add pvs 
    988990                if (viewCell != mOutOfBoundsCell) 
Note: See TracChangeset for help on using the changeset viewer.