Changeset 487 for trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.cpp
- Timestamp:
- 01/01/06 06:25:55 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.cpp
r486 r487 76 76 } 77 77 78 78 79 int BspNode::GetDepth() const 79 80 { … … 89 90 return depth; 90 91 } 92 93 94 bool BspNode::TreeValid() const 95 { 96 return mTreeValid; 97 } 98 99 100 void BspNode::SetTreeValid(const bool v) 101 { 102 mTreeValid = v; 103 } 104 91 105 92 106 /****************************************************************/ … … 186 200 return true; 187 201 } 188 189 202 190 203 /****************************************************************/ … … 1762 1775 } 1763 1776 1777 1764 1778 AxisAlignedBox3 BspTree::GetBoundingBox() const 1765 1779 { 1766 1780 return mBox; 1767 1781 } 1782 1768 1783 1769 1784 BspNode *BspTree::GetRoot() const
Note: See TracChangeset
for help on using the changeset viewer.