Ignore:
Timestamp:
09/27/06 16:24:39 (18 years ago)
Author:
mattausch
Message:

moved raycasting out of preprocessor into specific ray casting interface

File:
1 edited

Legend:

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

    r1297 r1520  
    88 
    99namespace GtpVisibilityPreprocessor { 
     10 
     11 
     12SamplingStrategy::SamplingStrategy(const Preprocessor &preprocessor):  
     13mPreprocessor(preprocessor) 
     14{ 
     15} 
     16 
     17 
     18SamplingStrategy::~SamplingStrategy()  
     19{ 
     20} 
     21 
    1022 
    1123 
     
    142154} 
    143155 
    144 /* 
     156#if 0 
    145157bool ObjectsInteriorDistribution::GenerateSample(SimpleRay &ray) const 
    146158{ 
     
    170182 
    171183        return true; 
    172 }*/ 
    173  
    174184} 
     185#endif 
     186} 
Note: See TracChangeset for help on using the changeset viewer.