Ignore:
Timestamp:
01/22/07 23:35:03 (17 years ago)
Author:
mattausch
Message:

changed to static cast

File:
1 edited

Legend:

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

    r2015 r2017  
    7777}; 
    7878 
     79typedef pair<ViewCell *, SimpleRayContainer> ViewCellPoints; 
    7980 
    8081/**     Manages different higher order operations on the view cells. 
     
    513514        virtual void CompressViewCells(); 
    514515 
     516        ViewCell *GetViewCellById(const int id); 
     517 
     518        /** Returns number of view cells. 
     519        */ 
    515520        int GetNumViewCells() const; 
    516521 
    517         ///////////////////////////// 
     522        bool GenerateRandomViewCells(ViewCellContainer &viewCells,  
     523                                                                 const int numViewCells); 
     524 
     525        bool GenerateRandomViewCells(vector<ViewCellPoints *> &viewCells, 
     526                                                                 const int nViewCells, 
     527                                                                 const int nViewPoints); 
     528 
     529 
     530        bool GenerateViewPoints(ViewCell *viewCell,  
     531                                                        const int numViewPoints, 
     532                                                        SimpleRayContainer &viewPoints); 
     533 
     534        bool ImportRandomViewCells(const string &filename,  
     535                                                           vector<ViewCellPoints *> &viewCells); 
     536 
     537 
     538        bool ExportRandomViewCells(const string &filename, 
     539                                                           const vector<ViewCellPoints *> &viewCells); 
     540 
     541        bool GenerateViewPoint(ViewCell *viewCell, SimpleRay &ray); 
     542 
     543        bool IsValidViewSpace(ViewCell *vc); 
     544 
     545        ////////////// 
    518546        // static members 
    519547         
Note: See TracChangeset for help on using the changeset viewer.