Ignore:
Timestamp:
08/29/06 17:34:19 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1284 r1294  
    227227                                                          ) = 0; 
    228228 
     229        /** Returns a stats about the global pvs. 
     230        */ 
    229231        virtual void GetPvsStatistics(PvsStatistics &stat); 
    230232 
     
    378380                                                                                vector<MergeCandidate> &candidates); 
    379381 
     382        /** Collects n view cells and stores it as the active view cells. 
     383        */ 
    380384        void CollectViewCells(const int n); 
    381385 
     
    453457        ////////////////////////////////////////////////////////7 
    454458        // visiblity filter options 
     459 
    455460        // TODO: write own visibiltiy filter class 
    456461        void ApplyFilter(KdTree *kdTree, 
     
    472477        float GetAbsFilterWidth(); 
    473478 
    474          
    475479        /** Returns the bounding box of filter width. 
    476480        */ 
    477481        AxisAlignedBox3 GetFilterBBox(const Vector3 &viewPoint, const float width) const; 
    478482 
     483        ////////////////////////////////////////////////////////////////// 
    479484 
    480485        /** Returns true if the view cell is equivalent to a  
     
    482487                view cell. 
    483488                e.g. to see if the spatial tree can be reduced on this location 
     489                note: not implemented 
    484490        */ 
    485491        virtual bool EqualToSpatialNode(ViewCell *viewCell) const; 
     
    502508protected: 
    503509 
    504         /** Exports bounding boxes as xml stream 
    505         */ 
    506         //bool ExportBoundingBoxes(ofstream &xmlstream, const ObjectContainer &objects) const; 
    507  
    508510        /** Intersects box with the tree and returns the number of intersected boxes. 
    509511                @returns number of view cells found 
     
    520522        bool ViewCellsTreeConstructed() const; 
    521523 
     524        /** Requests preprocessor to cast samplesPerPass samples of a specific type. 
     525        */ 
    522526        int CastPassSamples(const int samplesPerPass,  
    523527                                                const int sampleType,  
     
    717721                                                ViewCellContainer &viewcells); 
    718722         
     723        /** Returns the probability that the view point lies 
     724                in this view cells. 
     725        */ 
    719726        float GetProbability(ViewCell *viewCell); 
    720          
    721  
    722         /** Get a viewcell containing the specified point  
     727 
     728        /** Get a viewcell containing the specified point. 
    723729        */ 
    724730        ViewCell *GetViewCell(const Vector3 &point, const bool active = false) const; 
    725731 
     732        /** Creates mesh for this view cell. 
     733        */ 
    726734        void CreateMesh(ViewCell *vc); 
    727735 
Note: See TracChangeset for help on using the changeset viewer.