Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Guidelines for modifications:
* Özhan Özen
* Patrick Yin
* Peter Du
* Philipp Reist
* Pulkit Goyal
* Qian Wan
* Qinxi Yu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@ def update(self, dt: float):
default_inertia: torch.Tensor = None
"""Default inertia for all the bodies in the articulation. Shape is (num_instances, num_bodies, 9).

The inertia is the inertia tensor relative to the center of mass frame. The values are stored in
the order :math:`[I_{xx}, I_{xy}, I_{xz}, I_{yx}, I_{yy}, I_{yz}, I_{zx}, I_{zy}, I_{zz}]`.
The inertia tensor should be given with respect to the center of mass, expressed in the articulation links' actor frame.
The values are stored in the order :math:`[I_{xx}, I_{yx}, I_{zx}, I_{xy}, I_{yy}, I_{zy}, I_{xz}, I_{yz}, I_{zz}]`.
However, due to the symmetry of inertia tensors, row- and column-major orders are equivalent.

This quantity is parsed from the USD schema at the time of initialization.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,11 @@ def update(self, dt: float):
default_inertia: torch.Tensor = None
"""Default inertia tensor read from the simulation. Shape is (num_instances, 9).

The inertia is the inertia tensor relative to the center of mass frame. The values are stored in
the order :math:`[I_{xx}, I_{xy}, I_{xz}, I_{yx}, I_{yy}, I_{yz}, I_{zx}, I_{zy}, I_{zz}]`.
The inertia tensor should be given with respect to the center of mass, expressed in the rigid body's actor frame.
The values are stored in the order :math:`[I_{xx}, I_{yx}, I_{zx}, I_{xy}, I_{yy}, I_{zy}, I_{xz}, I_{yz}, I_{zz}]`.
However, due to the symmetry of inertia tensors, row- and column-major orders are equivalent.

This quantity is parsed from the USD schema at the time of initialization.
"""

##
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ def update(self, dt: float):
default_inertia: torch.Tensor = None
"""Default object inertia tensor read from the simulation. Shape is (num_instances, num_objects, 9).

The inertia is the inertia tensor relative to the center of mass frame. The values are stored in
the order :math:`[I_{xx}, I_{xy}, I_{xz}, I_{yx}, I_{yy}, I_{yz}, I_{zx}, I_{zy}, I_{zz}]`.
The inertia tensor should be given with respect to the center of mass, expressed in the rigid body's actor frame.
The values are stored in the order :math:`[I_{xx}, I_{yx}, I_{zx}, I_{xy}, I_{yy}, I_{zy}, I_{xz}, I_{yz}, I_{zz}]`.
However, due to the symmetry of inertia tensors, row- and column-major orders are equivalent.

This quantity is parsed from the USD schema at the time of initialization.
"""

##
Expand Down