Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/collision_detection/obb_tree.h @ 4511

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

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

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