Ignore:
Timestamp:
11/28/06 19:46:36 (18 years ago)
Author:
bittner
Message:

global lines support

File:
1 edited

Legend:

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

    r1772 r1824  
    3232                VIEWCELL_BORDER_BASED_DISTRIBUTION, 
    3333                VIEWSPACE_BORDER_BASED_DISTRIBUTION, 
    34                 REVERSE_VIEWSPACE_BORDER_BASED_DISTRIBUTION 
     34                REVERSE_VIEWSPACE_BORDER_BASED_DISTRIBUTION, 
     35                GLOBAL_LINES_DISTRIBUTION 
    3536        }; 
    3637 
     
    199200}; 
    200201 
     202class GlobalLinesDistribution: public SamplingStrategy 
     203{ 
     204public: 
     205  GlobalLinesDistribution(const Preprocessor &preprocessor): 
     206                SamplingStrategy(preprocessor) { 
     207                mType = GLOBAL_LINES_DISTRIBUTION; 
     208        } 
     209   
     210  virtual bool GenerateSample(SimpleRay &ray) const; 
     211}; 
     212 
    201213 
    202214/** This strategy generates samples inside of the objects, e.g., 
Note: See TracChangeset for help on using the changeset viewer.