Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions go2/modules/movement/virtual_movement_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ def move(self, vx: float = 0.0, vy: float = 0.0, vyaw: float = 0.0) -> VirtualCo
Parameters
----------
vx : float
Forward/backward velocity in m/s, in the range [-0.5, 0.5].
Forward/backward velocity in m/s, in the range [-1.0, +1.0].
vy : float
Lateral (side-to-side) velocity in m/s, in the range [-0.5, 0.5].
Lateral (side-to-side) velocity in m/s, in the range [-1.0, +1.0].
vyaw : float
Yaw turning rate in rad/s, in the range [-0.8, 0.8].
Yaw turning rate in rad/s, in the range [-1.0, +1.0].

Notes
-----
Expand Down