@@ -747,7 +747,7 @@ def body_ang_acc_w(self) -> torch.Tensor:
747747
748748 @property
749749 def body_link_pos_w (self ) -> torch .Tensor :
750- """Positions of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
750+ """Positions of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
751751
752752 This quantity is the position of the rigid bodies' actor frame relative to the world.
753753 """
@@ -760,7 +760,7 @@ def body_link_pos_w(self) -> torch.Tensor:
760760
761761 @property
762762 def body_link_quat_w (self ) -> torch .Tensor :
763- """Orientation (w, x, y, z) of all bodies in simulation world frame. Shape is (num_instances, 1 , 4).
763+ """Orientation (w, x, y, z) of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 4).
764764
765765 This quantity is the orientation of the rigid bodies' actor frame relative to the world.
766766 """
@@ -774,7 +774,7 @@ def body_link_quat_w(self) -> torch.Tensor:
774774
775775 @property
776776 def body_link_vel_w (self ) -> torch .Tensor :
777- """Velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 6).
777+ """Velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 6).
778778
779779 This quantity contains the linear and angular velocities of the rigid bodies' center of mass frame
780780 relative to the world.
@@ -783,15 +783,15 @@ def body_link_vel_w(self) -> torch.Tensor:
783783
784784 @property
785785 def body_link_lin_vel_w (self ) -> torch .Tensor :
786- """Linear velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
786+ """Linear velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
787787
788788 This quantity is the linear velocity of the rigid bodies' center of mass frame relative to the world.
789789 """
790790 return self .body_link_state_w [..., 7 :10 ]
791791
792792 @property
793793 def body_link_ang_vel_w (self ) -> torch .Tensor :
794- """Angular velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
794+ """Angular velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
795795
796796 This quantity is the angular velocity of the rigid bodies' center of mass frame relative to the world.
797797 """
@@ -803,7 +803,7 @@ def body_link_ang_vel_w(self) -> torch.Tensor:
803803
804804 @property
805805 def body_com_pos_w (self ) -> torch .Tensor :
806- """Positions of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
806+ """Positions of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
807807
808808 This quantity is the position of the rigid bodies' actor frame.
809809 """
@@ -813,13 +813,13 @@ def body_com_pos_w(self) -> torch.Tensor:
813813 def body_com_quat_w (self ) -> torch .Tensor :
814814 """Orientation (w, x, y, z) of the prinicple axies of inertia of all bodies in simulation world frame.
815815
816- Shape is (num_instances, 1 , 4). This quantity is the orientation of the rigid bodies' actor frame.
816+ Shape is (num_instances, num_bodies , 4). This quantity is the orientation of the rigid bodies' actor frame.
817817 """
818818 return self .body_com_state_w [..., 3 :7 ]
819819
820820 @property
821821 def body_com_vel_w (self ) -> torch .Tensor :
822- """Velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 6).
822+ """Velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 6).
823823
824824 This quantity contains the linear and angular velocities of the rigid bodies' center of mass frame.
825825 """
@@ -832,7 +832,7 @@ def body_com_vel_w(self) -> torch.Tensor:
832832
833833 @property
834834 def body_com_lin_vel_w (self ) -> torch .Tensor :
835- """Linear velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
835+ """Linear velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
836836
837837 This quantity is the linear velocity of the rigid bodies' center of mass frame.
838838 """
@@ -845,7 +845,7 @@ def body_com_lin_vel_w(self) -> torch.Tensor:
845845
846846 @property
847847 def body_com_ang_vel_w (self ) -> torch .Tensor :
848- """Angular velocity of all bodies in simulation world frame. Shape is (num_instances, 1 , 3).
848+ """Angular velocity of all bodies in simulation world frame. Shape is (num_instances, num_bodies , 3).
849849
850850 This quantity is the angular velocity of the rigid bodies' center of mass frame.
851851 """
0 commit comments