Changeset 6907 in orxonox.OLD for branches/network/src
- Timestamp:
- Jan 31, 2006, 5:46:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/space_ships/space_ship.cc
r6906 r6907 711 711 } 712 712 #define __OFFSET_VEL 0.05 713 if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL*oldVelocity.x+0. 01 ||714 fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL*oldVelocity.y+0. 01 ||715 fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*oldVelocity.z+0. 01 )713 if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL*oldVelocity.x+0.1 || 714 fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL*oldVelocity.y+0.1 || 715 fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*oldVelocity.z+0.1 ) 716 716 { 717 717 oldVelocity.x = velocity.x;
Note: See TracChangeset
for help on using the changeset viewer.