I would like to control vehicles with steering capabilities, such as Forklift_c or nova_carter, by setting the angles.
Are there any examples available?
I have tried setting the position as shown below, but it does not move as expected.
self._robot.apply_wheel_actions(ArticulationAction(joint_positions=np.array([0, 0, np.pi/4, np.pi/4, 0, 0]),
joint_efforts=np.array([0, 0, 0, 0, 0, 0]),
joint_velocities=np.array([2, 2, 0, 0, 0, 0])))