Changeset 9985 in orxonox.OLD for branches/coll_rect/src/lib/collision_reaction/collision_tube.h
- Timestamp:
- Dec 2, 2006, 4:28:11 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/coll_rect/src/lib/collision_reaction/collision_tube.h
r9983 r9985 68 68 const Vector& normal, const Vector& position, bool bInWall = false); 69 69 70 void handleCollisions(); 70 /** @returns an iterator pointing to the beginning of the list */ 71 CollisionIterator& begin() const { return this->_collisionList.begin(); } 72 /** @returns an iterator pointing to the end of the list */ 73 CollisionIterator& end() const { return this->_collisionList.end(); } 71 74 72 75 73 76 private: 74 77 std::vector<Collision*> _collisionList; //!< the list of collisions since the last processing 75 CollisionReaction* _reactionList[CREngine::CR_NUMBER]; //!< the collision reaction list containing all reactions types76 78 77 79
Note: See TracChangeset
for help on using the changeset viewer.