Ignore:
Timestamp:
10/04/06 20:43:07 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1449 r1570  
    615615                                                                ViewCellContainer &viewCells) const; 
    616616 
     617        /** Returns view cells of this ray, either taking precomputed cells 
     618                or by recomputation. 
     619        */ 
     620        void GetViewCells(const VssRay &ray, ViewCellContainer &viewCells); 
     621 
     622        /** Returns view cells tree. 
     623        */ 
     624        ViewCellsTree *GetViewCellsTree() const { return mViewCellsTree; } 
     625 
     626        /** Sets the view cells tree. 
     627        */ 
     628        void SetViewCellsTree(ViewCellsTree *vt) { mViewCellsTree = vt; } 
     629 
     630#if WORK_WITH_VIEWCELLS 
    617631        /** Remove the references of the parent view cell from the kd nodes associated with 
    618632                the objects. 
     
    623637        */ 
    624638        void AddViewCellReferences(ViewCell *vc) const; 
    625  
    626         /** Returns view cells of this ray, either taking precomputed cells 
    627                 or by recomputation. 
    628         */ 
    629         void GetViewCells(const VssRay &ray, ViewCellContainer &viewCells); 
    630  
    631         /** Returns view cells tree. 
    632         */ 
    633         ViewCellsTree *GetViewCellsTree() const { return mViewCellsTree; } 
    634  
    635         /** Sets the view cells tree. 
    636         */ 
    637         void SetViewCellsTree(ViewCellsTree *vt) { mViewCellsTree = vt; } 
    638  
     639#endif 
    639640 
    640641protected: 
Note: See TracChangeset for help on using the changeset viewer.