Ignore:
Timestamp:
08/20/06 22:48:01 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r860 r1233  
    134134  MeshKdTree(Mesh *mesh); 
    135135  ~MeshKdTree() { 
    136     if (mSplitCandidates) 
    137       delete mSplitCandidates; 
     136    if (mSubdivisionCandidates) 
     137      delete mSubdivisionCandidates; 
    138138     
    139139    if (mRoot) 
     
    220220 
    221221  void 
    222   SortSplitCandidates( 
     222  SortSubdivisionCandidates( 
    223223                      MeshKdLeaf *node, 
    224224                      const int axis 
     
    251251   
    252252  /// reusable array of split candidates 
    253   vector<SortableEntry> *mSplitCandidates; 
     253  vector<SortableEntry> *mSubdivisionCandidates; 
    254254 
    255255public: 
Note: See TracChangeset for help on using the changeset viewer.