Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/collision_detection/obb.h @ 4513

Last change on this file since 4513 was 4511, checked in by patrick, 19 years ago

orxonox/trunk: collision detection classes names and structures filled in

File size: 323 bytes
Line 
1/*!
2    \file obb.h
3    \brief Definition of an OBB (Object aligned Bounding Box)
4
5*/
6
7#ifndef _OBB_H
8#define _OBB_H
9
10#include "base_object.h"
11
12
13//! A class representing an extended bounding volume tree: an obb tree
14class OBB : public BaseObject {
15
16 public:
17  OBB();
18  virtual ~OBB();
19
20
21 private:
22
23};
24
25#endif /* _OBB_H */
Note: See TracBrowser for help on using the repository browser.