[Feature]: robot.set_qpos
and robot.control_dofs_position
have different indexing
#725
Labels
enhancement
New feature or request
What feature or enhancement are you proposing?
HI, Thanks for the incredible work!
Using Genesis has been exciting and quite intuitive.
I noticed when using
robot.set_qpos
androbot.control_dofs_position
for the go2 robot, the indexing for the joints was different.for
robot.set_qpos
the indexing wasFL_indices = torch.tensor([0, 4, 8]) FR_indices = torch.tensor([1, 5, 9]) RL_indices = torch.tensor([2, 6, 10]) RR_indices = torch.tensor([3, 7, 11])
and for
robot.control_dofs_position
it wasFR_indices_target = torch.tensor([0, 1, 2]) FL_indices_target = torch.tensor([3, 4, 5]) RR_indices_target = torch.tensor([6, 7, 8]) RL_indices_target = torch.tensor([9, 10, 11])
Am I doing something wrong? or If possible having the same indexing would be awesome. Thanks
Motivation
easier indexing
Potential Benefit
less bugs
What is the expected outcome of the implementation work?
same indexing for the 2 methods
Additional information
No response
The text was updated successfully, but these errors were encountered: