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.cpp

    r469 r478  
    77#include <iomanip> 
    88 
    9 ViewCell::ViewCell(): MeshInstance(NULL), mPiercingRays(0) 
     9ViewCell::ViewCell():  
     10MeshInstance(NULL),  
     11mPiercingRays(0), 
     12mArea(0), 
     13mVolume(0) 
    1014{ 
    1115} 
    1216 
    13 ViewCell::ViewCell(Mesh *mesh): MeshInstance(mesh), mPiercingRays(0) 
     17ViewCell::ViewCell(Mesh *mesh):  
     18MeshInstance(mesh),  
     19mPiercingRays(0), 
     20mArea(0), 
     21mVolume(0) 
    1422{ 
    1523} 
     
    3543} 
    3644 
     45 
    3746float ViewCell::GetVolume() const 
    3847{ 
     
    4049} 
    4150 
     51 
    4252void ViewCell::SetVolume(float volume)  
    4353{ 
    4454        mVolume = volume; 
    4555} 
     56 
     57 
     58float ViewCell::GetArea() const 
     59{ 
     60        return mArea; 
     61} 
     62 
     63 
     64void ViewCell::SetArea(float area)  
     65{ 
     66        mArea = area; 
     67} 
     68 
    4669 
    4770/************************************************************************/ 
Note: See TracChangeset for help on using the changeset viewer.