Changeset 4511 in orxonox.OLD for orxonox/trunk/src/util/collision_detection/obb_tree.h
- Timestamp:
- Jun 6, 2005, 12:31:17 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/collision_detection/obb_tree.h
r4510 r4511 1 1 /*! 2 \file proto_class.h3 \brief Definition of ...2 \file obb_tree.h 3 \brief Definition of an obb tree (Object aligned Bounding Box) 4 4 5 5 */ 6 6 7 #ifndef _ PROTO_CLASS_H8 #define _ PROTO_CLASS_H7 #ifndef _OBB_TREE_H 8 #define _OBB_TREE_H 9 9 10 10 #include "base_object.h" 11 11 12 // FORWARD DEFINITION13 12 14 15 16 //! A class for ... 17 class ProtoClass : public BaseObject { 13 //! A class for representing an obb tree 14 class OBBTree : public BaseObject { 18 15 19 16 public: 20 ProtoClass();21 virtual ~ ProtoClass();17 OBBTree(); 18 virtual ~OBBTree(); 22 19 23 20 … … 26 23 }; 27 24 28 #endif /* _ PROTO_CLASS_H */25 #endif /* _OBB_TREE_H */
Note: See TracChangeset
for help on using the changeset viewer.