Created
August 18, 2021 08:01
-
-
Save jkbjh/f69843f7b3b39378f9b86a871f2fc9ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import collections | |
JointInfo = collections.namedtuple( | |
"JointInfo", | |
[ | |
"index", | |
"name", | |
"type", | |
"q_index", | |
"u_index", | |
"flags", | |
"damping", | |
"friction", | |
"lower_limit", | |
"upper_limit", | |
"max_force", | |
"max_velocity", | |
"link_name", | |
"joint_axis", | |
"parent_frame_pos", | |
"parent_frame_orn", | |
"parent_index", | |
], | |
) | |
DynamicsInfo = collections.namedtuple( | |
"DynamicsInfo", | |
[ | |
"mass", | |
"lateral_friction", | |
"local_inertia_diagonal", | |
"local_inertial_pos", | |
"local_inertial_orn", | |
"restitution", | |
"rolling_friction", | |
"spinning_friction", | |
"contact_damping", | |
"contact_stiffness", | |
"UNKNOWN1" | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment