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.h

    r4510 r4511  
    11/*!
    2     \file proto_class.h
    3     \brief Definition of ...
     2    \file obb.h
     3    \brief Definition of an OBB (Object aligned Bounding Box)
    44
    55*/
    66
    7 #ifndef _PROTO_CLASS_H
    8 #define _PROTO_CLASS_H
     7#ifndef _OBB_H
     8#define _OBB_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 representing an extended bounding volume tree: an obb tree
     14class OBB : public BaseObject {
    1815
    1916 public:
    20   ProtoClass();
    21   virtual ~ProtoClass();
     17  OBB();
     18  virtual ~OBB();
    2219
    2320
     
    2623};
    2724
    28 #endif /* _PROTO_CLASS_H */
     25#endif /* _OBB_H */
Note: See TracChangeset for help on using the changeset viewer.