Last change
on this file since 4515 was
4514,
checked in by patrick, 20 years ago
|
orxonox/trunk: got the class hirarchy right now
|
File size:
346 bytes
|
Line | |
---|
1 | /*! |
---|
2 | \file obb_tree.h |
---|
3 | \brief Definition of an obb tree (Object aligned Bounding Box) |
---|
4 | |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _OBB_TREE_H |
---|
8 | #define _OBB_TREE_H |
---|
9 | |
---|
10 | #include "base_object.h" |
---|
11 | #include "bv_tree.h" |
---|
12 | |
---|
13 | //! A class for representing an obb tree |
---|
14 | class OBBTree : public BVTree { |
---|
15 | |
---|
16 | public: |
---|
17 | OBBTree(); |
---|
18 | virtual ~OBBTree(); |
---|
19 | |
---|
20 | |
---|
21 | private: |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* _OBB_TREE_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.