Ignore:
Timestamp:
08/10/05 01:50:13 (19 years ago)
Author:
mattausch
Message:

updated bsp trees

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/include/ViewCellBsp.h

    r221 r225  
    2929  protected: 
    3030 
    31           void SplitPoly(Plane3 *plane, Mesh *viewcell); 
    32  
    3331          /// parent of this node 
    3432          BspInterior *mParent; 
     
    3836  class BspInterior : public BspNode  
    3937  {     
    40         /** @return false since it is an interior node */ 
    41         bool IsLeaf() const; 
    42  
    43         protected: 
    44         /// Splitting plane corresponding to this node 
    45         Plane3 mPlane; 
    46         /// back node 
    47         BspNode *mBack; 
    48         /// front node 
    49         BspNode *mFront; 
     38          /** @return false since it is an interior node */ 
     39          bool IsLeaf() const; 
     40   
     41  protected: 
     42          /// Splitting plane corresponding to this node 
     43          Plane3 mPlane; 
     44          /// back node 
     45          BspNode *mBack; 
     46          /// front node 
     47          BspNode *mFront; 
    5048  }; 
    5149   
    5250   
    53   /** BSP leaf node implementation */ 
     51  /** BSP leaf node implementation. 
     52  */ 
    5453  class BspLeaf : public BspNode  
    5554  { 
     
    6564  }; 
    6665   
    67   /** Implementation of the ViewCell BSP tree */ 
     66  /** Implementation of the ViewCell BSP tree. 
     67  */ 
    6868  class BspTree  
    6969  { 
Note: See TracChangeset for help on using the changeset viewer.