Ignore:
Timestamp:
01/21/06 18:32:30 (18 years ago)
Author:
bittner
Message:

rss sampling changes, preprocessor::GenerateRays?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/Preprocessor.h

    r538 r563  
    9898  bool ExportSamples(const VssRayContainer &samples) const; 
    9999 
     100  /** Get Sample rays of particular type, returns false if this 
     101          type of rays is not supported by the preprocessor 
     102  */ 
     103  enum { 
     104        OBJECT_BASED_DISTRIBUTION, 
     105        DIRECTION_BASED_DISTRIBUTION, 
     106        DIRECTION_BOX_BASED_DISTRIBUTION, 
     107        SPATIAL_BOX_BASED_DISTRIBUTION, 
     108        RSS_BASED_DISTRIBUTION, 
     109        RSS_SILHOUETTE_BASED_DISTRIBUTION, 
     110        VSS_BASED_DISTRIBUTION 
     111  }; 
     112   
     113  virtual bool 
     114  GenerateRays( 
     115                           const int number, 
     116                           const int raysType, 
     117                           SimpleRayContainer &rays 
     118                           ); 
     119   
    100120  /// scene graph loaded from file 
    101121  SceneGraph *mSceneGraph; 
Note: See TracChangeset for help on using the changeset viewer.