Ignore:
Timestamp:
09/25/06 18:54:21 (18 years ago)
Author:
mattausch
Message:

worked on guided visibility sampling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/MeshKdTree.cpp

    r1233 r1486  
    463463   
    464464  return result; 
    465  
    466 } 
    467  
    468 } 
     465} 
     466 
     467 
     468AxisAlignedBox3 MeshKdTree::GetBox() const  
     469{  
     470        return mMesh->mBox;  
     471} 
     472 
     473 
     474MeshKdTree::~MeshKdTree()  
     475{ 
     476    if (mSubdivisionCandidates) 
     477                delete mSubdivisionCandidates; 
     478 
     479        if (mRoot) 
     480                delete mRoot; 
     481} 
     482   
     483 
     484MeshKdNode *MeshKdTree::GetRoot() const  
     485{ 
     486        return mRoot; 
     487} 
     488 
     489 
     490} 
Note: See TracChangeset for help on using the changeset viewer.