Changeset 4514 in orxonox.OLD for orxonox/trunk/src/util
- Timestamp:
- Jun 6, 2005, 12:44:25 AM (19 years ago)
- Location:
- orxonox/trunk/src/util/collision_detection
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/collision_detection/bounding_sphere.h
r4513 r4514 9 9 10 10 #include "base_object.h" 11 #include "bounding_volume.h" 11 12 12 13 13 14 //! A class representing an extended bounding volume tree: an sphere 14 class BoundingSphere : public B aseObject{15 class BoundingSphere : public BoundingVolume { 15 16 16 17 public: -
orxonox/trunk/src/util/collision_detection/bv_tree.h
r4511 r4514 14 14 15 15 16 //! A class for ...16 //! A class that represents a bounding volume tree 17 17 class BVTree : public BaseObject { 18 18 -
orxonox/trunk/src/util/collision_detection/obb.h
r4511 r4514 9 9 10 10 #include "base_object.h" 11 #include "bounding_volume.h" 11 12 12 13 13 14 //! A class representing an extended bounding volume tree: an obb tree 14 class OBB : public B aseObject{15 class OBB : public BoundingVolume { 15 16 16 17 public: -
orxonox/trunk/src/util/collision_detection/obb_tree.h
r4511 r4514 9 9 10 10 #include "base_object.h" 11 11 #include "bv_tree.h" 12 12 13 13 //! A class for representing an obb tree 14 class OBBTree : public B aseObject{14 class OBBTree : public BVTree { 15 15 16 16 public:
Note: See TracChangeset
for help on using the changeset viewer.