Changeset 565


Ignore:
Timestamp:
01/23/06 03:02:45 (18 years ago)
Author:
mattausch
Message:
 
Location:
trunk/VUT/GtpVisibilityPreprocessor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env

    r564 r565  
    3030VssPreprocessor { 
    3131        samplesPerPass  100000 
    32         initialSamples 1200000 
     32        initialSamples 2000000 
    3333        vssSamples 0 
    3434        vssSamplesPerPass 500000 
     
    305305                #maxAccRayLength        100 
    306306                 
    307                 maxViewCells            10000 
     307                maxViewCells            50000 
    308308                 
    309309                # used for pvs criterium 
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellsManager.cpp

    r564 r565  
    508508 
    509509        if (!GetViewSpaceBox().GetRaySegment(hray, tmin, tmax) || (tmin > tmax)) 
    510                 return; 
     510                return 0; 
    511511 
    512512        Vector3 origin = hray.Extrap(tmin); 
     
    515515        CastLineSegment(origin, termination, viewcells); 
    516516        //Debug << "constribution: " << (int)viewcells.size() << endl; 
    517         // copy viewcells memory efficiently 
    518         const bool storeViewcells = false; 
    519         if (storeViewcells) 
    520  
    521   CastLineSegment(origin, 
    522                                   termination, 
    523                                   viewcells); 
     517        CastLineSegment(origin, termination, viewcells); 
    524518 
    525519  //Debug << "constribution: " << (int)viewcells.size() << endl; 
Note: See TracChangeset for help on using the changeset viewer.