Ignore:
Timestamp:
08/25/06 10:14:56 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCell.h

    r1264 r1284  
    191191        bool AddPvsSample(Intersectable *sample, const float pdf, float &contribution); 
    192192   
    193  
    194193        /// Rays piercing this view cell. 
    195         RayContainer mPiercingRays; 
    196  
     194        //RayContainer mPiercingRays; 
    197195 
    198196        /** if this is a view cell correspending to a leaf in a hierarchy. 
     
    294292{ 
    295293        friend class ViewCellsManager; 
     294 
    296295public: 
    297296        ViewCellInterior(); 
     
    300299        ViewCellInterior(Mesh *mesh); 
    301300         
    302  
    303301        /** Sets pointer from parent to child and vice versa. 
    304302        */ 
     
    307305        bool IsLeaf() const; 
    308306 
    309         ViewCellContainer mChildren; 
    310  
    311   void SetCost(const float c) { 
    312         mCost = c; 
    313   } 
    314   float GetCost() const { 
    315         return mCost; 
    316   } 
     307        void SetCost(const float c) { 
     308                mCost = c; 
     309        } 
     310         
     311        float GetCost() const { 
     312                return mCost; 
     313        } 
    317314   
     315  ViewCellContainer mChildren; 
     316 
    318317protected: 
    319318  /** overall cost resulting from the merge */ 
Note: See TracChangeset for help on using the changeset viewer.