Update filter and printed message in vehicle_physics.py
This commit is contained in:
parent
6ee7cf5bd1
commit
7f51f21ee5
|
@ -85,7 +85,7 @@ def main(arg):
|
||||||
# Impulse/Force at the center of mass of the object
|
# Impulse/Force at the center of mass of the object
|
||||||
impulse = 10 * car_mass
|
impulse = 10 * car_mass
|
||||||
|
|
||||||
print("# Adding an Impulse of %f N s" % impulse)
|
print("# Adding an Impulse of {:.1f} N s".format(impulse))
|
||||||
vehicle.add_impulse(carla.Vector3D(0, 0, impulse))
|
vehicle.add_impulse(carla.Vector3D(0, 0, impulse))
|
||||||
|
|
||||||
wait(world)
|
wait(world)
|
||||||
|
@ -93,7 +93,7 @@ def main(arg):
|
||||||
vehicle.set_target_velocity(carla.Vector3D(0, 0, 0))
|
vehicle.set_target_velocity(carla.Vector3D(0, 0, 0))
|
||||||
wait(world)
|
wait(world)
|
||||||
|
|
||||||
print("# Adding a Force of %f N" % (impulse / delta))
|
print("# Adding a Force of {:.1f} N".format(impulse / delta))
|
||||||
# The add_force method should not be use for instantaneous forces like this one,
|
# The add_force method should not be use for instantaneous forces like this one,
|
||||||
# it is more useful for constant or variable forces acting in a finite amount of time.
|
# it is more useful for constant or variable forces acting in a finite amount of time.
|
||||||
# In this script it is done with the proper scaling to show the equivalence
|
# In this script it is done with the proper scaling to show the equivalence
|
||||||
|
@ -107,8 +107,6 @@ def main(arg):
|
||||||
vehicle.set_target_velocity(carla.Vector3D(0, 0, 0))
|
vehicle.set_target_velocity(carla.Vector3D(0, 0, 0))
|
||||||
wait(world)
|
wait(world)
|
||||||
|
|
||||||
wait(world, 500)
|
|
||||||
|
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
world.apply_settings(original_settings)
|
world.apply_settings(original_settings)
|
||||||
|
@ -134,7 +132,7 @@ if __name__ == "__main__":
|
||||||
argparser.add_argument(
|
argparser.add_argument(
|
||||||
'--filter',
|
'--filter',
|
||||||
metavar='PATTERN',
|
metavar='PATTERN',
|
||||||
default='model3',
|
default='vehicle.*',
|
||||||
help='actor filter (default: "vehicle.*")')
|
help='actor filter (default: "vehicle.*")')
|
||||||
args = argparser.parse_args()
|
args = argparser.parse_args()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue