Changeset 225 for trunk/VUT/GtpVisibilityPreprocessor/include
- Timestamp:
- 08/10/05 01:50:13 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/include/ViewCellBsp.h
r221 r225 29 29 protected: 30 30 31 void SplitPoly(Plane3 *plane, Mesh *viewcell);32 33 31 /// parent of this node 34 32 BspInterior *mParent; … … 38 36 class BspInterior : public BspNode 39 37 { 40 /** @return false since it is an interior node */41 bool IsLeaf() const;42 43 44 /// Splitting plane corresponding to this node45 Plane3 mPlane;46 /// back node47 BspNode *mBack;48 /// front node49 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; 50 48 }; 51 49 52 50 53 /** BSP leaf node implementation */ 51 /** BSP leaf node implementation. 52 */ 54 53 class BspLeaf : public BspNode 55 54 { … … 65 64 }; 66 65 67 /** Implementation of the ViewCell BSP tree */ 66 /** Implementation of the ViewCell BSP tree. 67 */ 68 68 class BspTree 69 69 {
Note: See TracChangeset
for help on using the changeset viewer.