Ignore:
Timestamp:
12/22/05 18:32:39 (19 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h

    r471 r478  
    4545        /** Returns volume of the view cell. 
    4646        */ 
    47         virtual float GetVolume() const; 
     47        float GetVolume() const; 
    4848 
    49         /** Sets volume of the view cell. 
     49        /** Returns area of the view cell. 
    5050        */ 
    51         void SetVolume(float size); 
     51        float GetArea() const; 
     52 
     53        /** Sets the volume of the view cell. 
     54        */ 
     55        void SetVolume(float volume); 
     56         
     57        /** Sets the area of the view cell. 
     58        */ 
     59        void SetArea(float area); 
    5260 
    5361        /// Ray set description of the rays passing through this node. 
     
    6371 
    6472        float mVolume; 
     73        float mArea; 
    6574}; 
    6675 
Note: See TracChangeset for help on using the changeset viewer.