Ignore:
Timestamp:
11/02/06 00:22:28 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1707 r1708  
    297297         
    298298        stype = SamplingStrategy::OBJECT_BASED_DISTRIBUTION; 
    299         mPreprocessor->GenerateRays(samplesPerPass / 3, sampleType, simpleRays); 
     299        mPreprocessor->GenerateRays(samplesPerPass / 4, sampleType, simpleRays); 
    300300         
    301301        stype = SamplingStrategy::SPATIAL_BOX_BASED_DISTRIBUTION; 
    302         mPreprocessor->GenerateRays(samplesPerPass / 3, sampleType, simpleRays); 
     302        mPreprocessor->GenerateRays(samplesPerPass / 4, sampleType, simpleRays); 
    303303         
    304304        stype = SamplingStrategy::DIRECTION_BASED_DISTRIBUTION; 
    305         mPreprocessor->GenerateRays(samplesPerPass / 3, sampleType, simpleRays); 
     305        mPreprocessor->GenerateRays(samplesPerPass / 4, sampleType, simpleRays); 
     306 
     307        stype = SamplingStrategy::REVERSE_OBJECT_BASED_DISTRIBUTION; 
     308        mPreprocessor->GenerateRays(samplesPerPass / 4, sampleType, simpleRays); 
    306309 
    307310        cout << "generated " << samplesPerPass << " samples in " << TimeDiff(startTime, GetTime()) * 1e-3 << " secs" << endl; 
Note: See TracChangeset for help on using the changeset viewer.