Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/collision_detection
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/collision_detection
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/collision_detection/aabb.cc
r9687 r9715 21 21 22 22 23 NewObjectListDefinition(AABB);23 ObjectListDefinition(AABB); 24 24 /** 25 25 * standard constructor -
branches/new_class_id/src/lib/collision_detection/aabb.h
r9687 r9715 13 13 //! A class representing an extended bounding volume tree: an obb tree 14 14 class AABB : public BoundingVolume { 15 NewObjectListDeclaration(AABB);15 ObjectListDeclaration(AABB); 16 16 17 17 public: -
branches/new_class_id/src/lib/collision_detection/aabb_tree_node.cc
r9687 r9715 34 34 GLUquadricObj* AABBTreeNode_sphereObj = NULL; 35 35 36 NewObjectListDefinition(AABBTreeNode);36 ObjectListDefinition(AABBTreeNode); 37 37 /** 38 38 * standard constructor -
branches/new_class_id/src/lib/collision_detection/aabb_tree_node.h
r9687 r9715 21 21 class AABBTreeNode : public BVTreeNode 22 22 { 23 NewObjectListDeclaration(AABBTreeNode);23 ObjectListDeclaration(AABBTreeNode); 24 24 25 25 -
branches/new_class_id/src/lib/collision_detection/bounding_sphere.cc
r9687 r9715 20 20 21 21 22 NewObjectListDefinition(BoundingSphere);22 ObjectListDefinition(BoundingSphere); 23 23 /** 24 24 * standard constructor -
branches/new_class_id/src/lib/collision_detection/bounding_sphere.h
r9687 r9715 14 14 //! A class representing an extended bounding volume tree: an sphere 15 15 class BoundingSphere : public BoundingVolume { 16 NewObjectListDeclaration(BoundingSphere);16 ObjectListDeclaration(BoundingSphere); 17 17 18 18 public: -
branches/new_class_id/src/lib/collision_detection/bounding_volume.cc
r9687 r9715 20 20 21 21 22 NewObjectListDefinition(BoundingVolume);22 ObjectListDefinition(BoundingVolume); 23 23 /** 24 24 * standard constructor -
branches/new_class_id/src/lib/collision_detection/bounding_volume.h
r9687 r9715 17 17 //! An abstract class representing a bounding volume 18 18 class BoundingVolume : public BaseObject { 19 NewObjectListDeclaration(BoundingVolume);19 ObjectListDeclaration(BoundingVolume); 20 20 21 21 public: -
branches/new_class_id/src/lib/collision_detection/bv_tree.cc
r9687 r9715 21 21 22 22 23 NewObjectListDefinition(BVTree);23 ObjectListDefinition(BVTree); 24 24 /** 25 25 * standard constructor -
branches/new_class_id/src/lib/collision_detection/bv_tree.h
r9687 r9715 36 36 class BVTree : public BaseObject 37 37 { 38 NewObjectListDeclaration(BVTree);38 ObjectListDeclaration(BVTree); 39 39 40 40 public: -
branches/new_class_id/src/lib/collision_detection/bv_tree_node.cc
r9687 r9715 20 20 21 21 22 NewObjectListDefinition(BVTreeNode);22 ObjectListDefinition(BVTreeNode); 23 23 /** 24 24 * standard constructor -
branches/new_class_id/src/lib/collision_detection/bv_tree_node.h
r9687 r9715 24 24 //! A class that represents a bounding volume tree 25 25 class BVTreeNode : public BaseObject { 26 NewObjectListDeclaration(BVTreeNode);26 ObjectListDeclaration(BVTreeNode); 27 27 28 28 -
branches/new_class_id/src/lib/collision_detection/cd_engine.cc
r9687 r9715 34 34 35 35 36 NewObjectListDefinition(CDEngine);36 ObjectListDefinition(CDEngine); 37 37 /** 38 38 * @brief standard constructor … … 103 103 std::list<WorldEntity*>::iterator entityIterator; 104 104 // for all bsp managers check all entities 105 for( NewObjectList<BspEntity>::const_iterator bspIterator = BspEntity::objectList().begin();105 for( ObjectList<BspEntity>::const_iterator bspIterator = BspEntity::objectList().begin(); 106 106 bspIterator != BspEntity::objectList().end(); 107 107 bspIterator++) { -
branches/new_class_id/src/lib/collision_detection/cd_engine.h
r9687 r9715 36 36 //! The class representing the collision detection system of orxonox 37 37 class CDEngine : public BaseObject { 38 NewObjectListDeclaration(CDEngine);38 ObjectListDeclaration(CDEngine); 39 39 40 40 friend class WorldEntity; -
branches/new_class_id/src/lib/collision_detection/obb.cc
r9687 r9715 21 21 22 22 23 NewObjectListDefinition(OBB);23 ObjectListDefinition(OBB); 24 24 /** 25 25 * standard constructor -
branches/new_class_id/src/lib/collision_detection/obb.h
r9687 r9715 15 15 //! A class representing an extended bounding volume tree: an obb tree 16 16 class OBB : public BoundingVolume { 17 NewObjectListDeclaration(OBB);17 ObjectListDeclaration(OBB); 18 18 19 19 public: -
branches/new_class_id/src/lib/collision_detection/obb_tree.cc
r9687 r9715 27 27 28 28 29 NewObjectListDefinition(OBBTree);29 ObjectListDefinition(OBBTree); 30 30 /** 31 31 * standard constructor -
branches/new_class_id/src/lib/collision_detection/obb_tree.h
r9687 r9715 20 20 class OBBTree : public BVTree 21 21 { 22 NewObjectListDeclaration(OBBTree);22 ObjectListDeclaration(OBBTree); 23 23 24 24 public: -
branches/new_class_id/src/lib/collision_detection/obb_tree_node.cc
r9687 r9715 38 38 GLUquadricObj* OBBTreeNode_sphereObj = NULL; 39 39 40 NewObjectListDefinition(OBBTreeNode);40 ObjectListDefinition(OBBTreeNode); 41 41 /** 42 42 * standard constructor -
branches/new_class_id/src/lib/collision_detection/obb_tree_node.h
r9687 r9715 20 20 class OBBTreeNode : public BVTreeNode 21 21 { 22 NewObjectListDeclaration(OBBTreeNode);22 ObjectListDeclaration(OBBTreeNode); 23 23 public: 24 24 OBBTreeNode(const OBBTree& tree, OBBTreeNode* prev, int depth);
Note: See TracChangeset
for help on using the changeset viewer.