Ignore:
Timestamp:
06/09/08 10:36:36 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2742 r2743  
    3232{ 
    3333        VssRayContainer rays; 
    34         CastRay(simpleRay, rays, box, castDoubleRay, true); 
     34        //CastRay(simpleRay, rays, box, castDoubleRay, true); 
     35        CastRay(simpleRay, rays, box, castDoubleRay, false); 
    3536     
    3637        if (!rays.empty()) 
     
    409410 
    410411 
    411 /*void RayCaster::DeleteOldRays() 
    412 { 
    413         CLEAR_CONTAINER(mOldRays); 
    414 }*/ 
    415  
    416  
    417412int 
    418413RayCaster::ProcessRay(const SimpleRay &simpleRay, 
     
    443438         
    444439        // regardless of the pruneInvalidRays setting reject  
    445         // rays whic degenerate to a point 
     440        // rays which degenerate to a point 
    446441        if (EpsilonEqualV3(hitA.mPoint, hitB.mPoint, Limits::Small)) { 
    447442#if DEBUG_PROCESS_RAY 
     
    462457        // reset both contributions 
    463458        if (!validA || !validB) { 
    464           if (0 || pruneInvalidRays) 
     459          if (pruneInvalidRays) 
    465460                return 0; 
    466461 
Note: See TracChangeset for help on using the changeset viewer.