Ignore:
Timestamp:
09/28/06 18:51:43 (18 years ago)
Author:
mattausch
Message:

worked on gvs

File:
1 edited

Legend:

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

    r1524 r1528  
    846846                                           SimpleRayContainer &rays, 
    847847                                           VssRayContainer &vssRays, 
    848                                            const bool castDoubleRays 
     848                                           const bool castDoubleRays, 
     849                                           const bool pruneInvalidRays 
    849850                                           ) 
    850851{ 
     
    860861                                vssRays, 
    861862                                mViewCellsManager->GetViewSpaceBox(), 
    862                                 castDoubleRays); 
     863                                castDoubleRays, 
     864                                pruneInvalidRays); 
    863865                        i += 16; 
    864866                } 
     
    866868                { 
    867869                        mRayCaster->CastRay( 
    868                                 rays[i].mOrigin, 
    869                                 rays[i].mDirection, 
    870                                 rays[i].mPdf, 
     870                                rays[i], 
    871871                                vssRays, 
    872872                                mViewCellsManager->GetViewSpaceBox(), 
    873                                 castDoubleRays); 
     873                                castDoubleRays, 
     874                                pruneInvalidRays); 
    874875                        i ++; 
    875876                } 
Note: See TracChangeset for help on using the changeset viewer.