Changeset 478 for trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h
- Timestamp:
- 12/22/05 18:32:39 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h
r471 r478 45 45 /** Returns volume of the view cell. 46 46 */ 47 virtualfloat GetVolume() const;47 float GetVolume() const; 48 48 49 /** Sets volumeof the view cell.49 /** Returns area of the view cell. 50 50 */ 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); 52 60 53 61 /// Ray set description of the rays passing through this node. … … 63 71 64 72 float mVolume; 73 float mArea; 65 74 }; 66 75
Note: See TracChangeset
for help on using the changeset viewer.