Ignore:
Timestamp:
08/22/06 22:48:02 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1251 r1259  
    27122712 
    27132713 
    2714 } 
     2714bool OspTree::AddLeafToPvs(KdLeaf *leaf,  
     2715                                                   ViewCell *vc,  
     2716                                                   const float pdf,  
     2717                                                   float &contribution) 
     2718{ 
     2719        // add kd intersecable to pvs 
     2720        KdIntersectable *kdObj = GetOrCreateKdIntersectable(leaf); 
     2721         
     2722        return vc->AddPvsSample(kdObj, pdf, contribution); 
     2723} 
     2724 
     2725 
     2726} 
Note: See TracChangeset for help on using the changeset viewer.