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.h

    r1251 r1259  
    397397        void InsertObjects(KdNode *node, const ObjectContainer &objects); 
    398398 
     399        /** Add the leaf to the pvs of the view cell. 
     400        */ 
     401        bool AddLeafToPvs( 
     402                KdLeaf *leaf,  
     403                ViewCell *vc,  
     404                const float pdf,  
     405                float &contribution); 
     406 
    399407protected: 
    400408 
     
    596604        /** Evaluate the contributions of view cell volume of the left and the right view cell. 
    597605        */ 
    598         void EvalRayContribution(KdLeaf *leaf, 
    599                                                                          const VssRay &ray,  
    600                                                                          float &renderCost); 
    601 void EvalViewCellContribution(KdLeaf *leaf,  
    602                                                                            ViewCell *viewCell, 
    603                                                                            float &renderCost); 
     606        void EvalRayContribution( 
     607                KdLeaf *leaf, 
     608                const VssRay &ray,  
     609                float &renderCost); 
     610         
     611        void EvalViewCellContribution( 
     612                KdLeaf *leaf,  
     613                ViewCell *viewCell, 
     614                float &renderCost); 
     615 
    604616        /** Evaluates the influence on the pvs of the event. 
    605617                @param ve the visibility event 
     
    718730                RayInfoContainer &rays); 
    719731 
     732 
    720733protected: 
    721  
    722734         
    723735        /// pointer to the hierarchy of view cells 
Note: See TracChangeset for help on using the changeset viewer.