Ignore:
Timestamp:
09/27/06 17:20:00 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1520 r1521  
    1414mPreprocessor(preprocessor) 
    1515{ 
     16} 
     17 
     18 
     19RayCaster::~RayCaster() 
     20{ 
     21} 
     22 
     23 
     24VssRay *RayCaster::CastSingleRay(const Vector3 &viewPoint, 
     25                                                                 const Vector3 &direction, 
     26                                                                 const float probability, 
     27                                                                 const AxisAlignedBox3 &box) 
     28{ 
     29        VssRayContainer rays; 
     30        CastRay(viewPoint, direction, probability, rays, box, false); 
     31 
     32        if (!rays.empty()) 
     33                return rays.back(); 
    1634} 
    1735 
Note: See TracChangeset for help on using the changeset viewer.