Changeset 9986 in orxonox.OLD for branches/coll_rect/src
- Timestamp:
- Dec 2, 2006, 6:47:40 PM (18 years ago)
- Location:
- branches/coll_rect/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/coll_rect/src/lib/collision_reaction/collision_tube.h
r9985 r9986 69 69 70 70 /** @returns an iterator pointing to the beginning of the list */ 71 CollisionIterator& begin() const{ return this->_collisionList.begin(); }71 CollisionIterator& begin() { return this->_collisionList.begin(); } 72 72 /** @returns an iterator pointing to the end of the list */ 73 CollisionIterator& end() const{ return this->_collisionList.end(); }73 CollisionIterator& end() { return this->_collisionList.end(); } 74 74 75 75 -
branches/coll_rect/src/lib/collision_reaction/cr_engine.h
r9985 r9986 23 23 class Collision; 24 24 class CollisionEvent; 25 class CollisionReaction; 26 25 27 26 28 //! A default singleton class. -
branches/coll_rect/src/world_entities/world_entity.h
r9980 r9986 96 96 inline bool isReactive( const WorldEntity& worldEntity) const { return this->isReactive() || (this->_collisionFilter(worldEntity)); } 97 97 /** @param worldEntity the world entity to be checked @param type special reaction type @returns true if collision reaction reg. */ 98 inline bool isReactive( const WorldEntity& worldEntity, CoRe:: ReactionType type) const98 inline bool isReactive( const WorldEntity& worldEntity, CoRe::CREngine::ReactionType type) const 99 99 { return this->isReactive() || (this->_collisionFilter(worldEntity, type)); } 100 100
Note: See TracChangeset
for help on using the changeset viewer.