Ignore:
Timestamp:
03/07/07 16:26:58 (17 years ago)
Author:
mattausch
Message:

using mutationsamples for evaluation

File:
1 edited

Legend:

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

    r2176 r2199  
    173173        */ 
    174174        void SetPvs(const ObjectPvs &pvs); 
    175         /** Type of view cells. 
     175        /** Type of view cell. 
    176176        */ 
    177177        int Type() const; 
     
    181181        /** Returns volume of the view cell. 
    182182        */ 
    183         float GetVolume() const; 
     183        inline float GetVolume() const 
     184        { 
     185                return mVolume; 
     186        } 
     187        /** Sets the volume of the view cell. 
     188        */ 
     189        inline void SetVolume(float volume) 
     190        { 
     191                mVolume = volume; 
     192        } 
    184193        /** Returns area of the view cell. 
    185194        */ 
    186         float GetArea() const; 
    187         /** Sets the volume of the view cell. 
    188         */ 
    189         void SetVolume(float volume); 
     195        inline float GetArea() const 
     196        { 
     197                return mArea; 
     198        } 
    190199        /** Sets the area of the view cell. 
    191200        */ 
    192         void SetArea(float area); 
     201        void SetArea(float area) 
     202        { 
     203                mArea = area; 
     204        } 
    193205        /** if this view cell is the root of a view cell hierarchy 
    194206        */ 
Note: See TracChangeset for help on using the changeset viewer.