Ignore:
Timestamp:
01/10/07 21:32:50 (17 years ago)
Author:
bittner
Message:

samplign preprocessor updates, merge

File:
1 edited

Legend:

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

    r1952 r1966  
    142142                return 0; 
    143143          } 
    144           if (EpsilonEqualV3(hitA.mPoint, hitB.mPoint, Limits::Small)) { 
    145                 return 0; 
    146           } 
    147         } 
     144        } 
     145 
    148146         
    149147        // regardless of the pruneInvalidRays setting reject rays whic degenerate to a point 
     148        if (EpsilonEqualV3(hitA.mPoint, hitB.mPoint, Limits::Small)) { 
     149          return 0; 
     150        } 
     151         
     152         
    150153        const bool validA = ValidateRay(simpleRay.mOrigin, simpleRay.mDirection, box, hitA); 
    151154        const bool validB = //castDoubleRay &&  
Note: See TracChangeset for help on using the changeset viewer.