Ignore:
Timestamp:
08/21/06 18:39:49 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1221 r1251  
    150150  */ 
    151151  ViewCellsManager *CreateViewCellsManager(const char *name); 
    152  
    153152    
    154153  GlRendererBuffer *GetRenderer() { return renderer;} 
    155154 
    156155  bool InitRayCast(const string externKdTree); 
     156 
     157  int CastRay( 
     158          const Vector3 &viewPoint, 
     159          const Vector3 &direction, 
     160          const float probability, 
     161          VssRayContainer &vssRays, 
     162          const AxisAlignedBox3 &box 
     163          ); 
    157164 
    158165  //////////////////////////////////////////////// 
     
    209216  void SetRayCastMethod(int rayCastMethod) { mRayCastMethod = rayCastMethod; } 
    210217 
     218  int mPass; 
     219 
    211220protected: 
     221 
     222        void SetupRay(Ray &ray, const Vector3 &point, const Vector3 &direction); 
     223 
     224        int CastInternalRay( 
     225                const Vector3 &viewPoint, 
     226                const Vector3 &direction, 
     227                const float probability, 
     228                VssRayContainer &vssRays, 
     229                const AxisAlignedBox3 &box); 
     230 
     231        int CastIntelDoubleRay( 
     232                const Vector3 &viewPoint, 
     233                const Vector3 &direction, 
     234                const float probability, 
     235                VssRayContainer &vssRays, 
     236                const AxisAlignedBox3 &box); 
     237 
     238        Intersectable *CastIntelSingleRay( 
     239                        const Vector3 &viewPoint, 
     240                        const Vector3 &direction, 
     241                        Vector3 &tPoint, 
     242                        const AxisAlignedBox3 &box); 
    212243 
    213244  ///////////////////////// 
Note: See TracChangeset for help on using the changeset viewer.