Ignore:
Timestamp:
01/15/07 18:33:00 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1981 r1982  
    171171                                                   const VssRayContainer &sampleRays) = 0; 
    172172 
    173   /** collect objects intersecting a given spatial box */ 
    174   virtual void CollectObjects(const AxisAlignedBox3 &box, ObjectContainer &objects); 
     173        /** collect objects intersecting a given spatial box. 
     174        */ 
     175        virtual void CollectObjects(const AxisAlignedBox3 &box, ObjectContainer &objects); 
    175176 
    176177        /** type of the view cell container. 
     
    185186                @param filename file to load 
    186187                @return true on success 
    187     */ 
    188     virtual bool LoadViewCellsGeometry(const string filename, const bool extrudeBaseTriangle); 
     188        */ 
     189        virtual bool LoadViewCellsGeometry(const string filename, const bool extrudeBaseTriangle); 
    189190         
    190191        /** Merges two view cells. 
     
    210211        ViewCell *ExtrudeViewCell(const Triangle3 &baseTri, const float height) const; 
    211212 
    212  
    213   virtual Intersectable * 
    214   GetIntersectable(const VssRay &ray, const bool isTermination) const; 
     213        virtual Intersectable *GetIntersectable(const VssRay &ray, const bool isTermination) const; 
    215214 
    216215        /** Sets maximal number of samples used for the  
     
    272271        virtual ViewCell *GetViewCell(const Vector3 &point, const bool active = false) const = 0; 
    273272   
     273        ViewCell *GetViewCell(const int idx) const {return mViewCells[idx];} 
     274 
    274275        virtual void PrintPvsStatistics(ostream &s); 
    275276 
     
    324325        virtual bool GetViewPoint(Vector3 &viewPoint) const; 
    325326   
    326   virtual bool GetViewPoint(Vector3 &viewPoint, const Vector3 &params) const; 
     327        virtual bool GetViewPoint(Vector3 &viewPoint, const Vector3 &params) const; 
    327328 
    328329        /** Returns true if this view point is in the valid view space. 
     
    489490 
    490491        virtual void CompressViewCells(); 
     492 
     493        int GetNumViewCells() const; 
    491494 
    492495        ///////////////////////////// 
Note: See TracChangeset for help on using the changeset viewer.