Ignore:
Timestamp:
02/02/07 13:25:06 (17 years ago)
Author:
bittner
Message:

merge

File:
1 edited

Legend:

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

    r2070 r2076  
    356356} 
    357357 
    358 } 
     358 
     359void 
     360RayCaster::CastRays( 
     361                                        SimpleRayContainer &rays, 
     362                                        VssRayContainer &vssRays, 
     363                                        const AxisAlignedBox3 &sbox, 
     364                                        const bool castDoubleRay, 
     365                                        const bool pruneInvalidRays ) 
     366{ 
     367  SimpleRayContainer::const_iterator rit, rit_end = rays.end(); 
     368   
     369  for (rit = rays.begin(); rit != rit_end; ++ rit) { 
     370        CastRay( 
     371                        *rit,                            
     372                        vssRays, 
     373                        sbox, 
     374                        castDoubleRay, 
     375                        pruneInvalidRays); 
     376  } 
     377   
     378} 
     379 
     380} 
Note: See TracChangeset for help on using the changeset viewer.