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

    r1201 r1259  
    3636class VspNode; 
    3737class HierarchyManager; 
     38class BvHierarchy; 
     39 
    3840struct AxisAlignedPlane; 
    39  
    4041struct BspRay; 
    4142 
     
    490491        bool GetStoreKdPVs() const; 
    491492 
     493        virtual bool AddSampleToPvs( 
     494                Intersectable *obj,  
     495                const Vector3 &hitPoint, 
     496                ViewCell *vc, 
     497                const float pdf,  
     498                float &contribution) const; 
     499 
    492500protected: 
    493501 
     
    672680        bool mExportPvs; 
    673681 
    674         bool mStoreKdPvs; 
     682        bool mStoreObjectPvs; 
    675683 
    676684        VssRayContainer storedRays; 
     
    10161024                BoundingBoxConverter *bconverter); 
    10171025 
     1026        bool AddSampleToPvs( 
     1027                Intersectable *obj,  
     1028                const Vector3 &hitPoint, 
     1029                ViewCell *vc, 
     1030                const float pdf,  
     1031        float &contribution) const; 
    10181032 
    10191033protected: 
     
    10501064 
    10511065        ///////////////////////////////////////// 
    1052         /// the view space partition tree. 
     1066 
     1067        /// the view space / object partition hierarchies 
    10531068        VspTree *mVspTree; 
    10541069        OspTree *mOspTree; 
     1070        BvHierarchy *mBvHierarchy; 
    10551071 
    10561072        HierarchyManager *mHierarchyManager; 
Note: See TracChangeset for help on using the changeset viewer.