Last change
on this file since 4518 was
4511,
checked in by patrick, 20 years ago
|
orxonox/trunk: collision detection classes names and structures filled in
|
File size:
402 bytes
|
Line | |
---|
1 | /*! |
---|
2 | \file bounding_volume.h |
---|
3 | \brief Definition of a bounding volume for collision detection algorithms |
---|
4 | |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _BOUNDING_VOLUME_H |
---|
8 | #define _BOUNDING_VOLUME_H |
---|
9 | |
---|
10 | #include "base_object.h" |
---|
11 | |
---|
12 | |
---|
13 | //! An abstract class representing a bounding volume |
---|
14 | class BoundingVolume : public BaseObject { |
---|
15 | |
---|
16 | public: |
---|
17 | BoundingVolume(); |
---|
18 | virtual ~BoundingVolume(); |
---|
19 | |
---|
20 | |
---|
21 | private: |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* _BOUNDING_VOLUME_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.