Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 6, 2005, 12:31:17 AM (20 years ago)
Author:
patrick
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/collision_detection/obb_tree.h

    r4510 r4511  
    11/*!
    2     \file proto_class.h
    3     \brief Definition of ...
     2    \file obb_tree.h
     3    \brief Definition of an obb tree (Object aligned Bounding Box)
    44
    55*/
    66
    7 #ifndef _PROTO_CLASS_H
    8 #define _PROTO_CLASS_H
     7#ifndef _OBB_TREE_H
     8#define _OBB_TREE_H
    99
    1010#include "base_object.h"
    1111
    12 // FORWARD DEFINITION
    1312
    14 
    15 
    16 //! A class for ...
    17 class ProtoClass : public BaseObject {
     13//! A class for representing an obb tree
     14class OBBTree : public BaseObject {
    1815
    1916 public:
    20   ProtoClass();
    21   virtual ~ProtoClass();
     17  OBBTree();
     18  virtual ~OBBTree();
    2219
    2320
     
    2623};
    2724
    28 #endif /* _PROTO_CLASS_H */
     25#endif /* _OBB_TREE_H */
Note: See TracChangeset for help on using the changeset viewer.