Skip to content

Commit

Permalink
Merge branch 'joint-dim-docs' into 'main'
Browse files Browse the repository at this point in the history
Fix dimension documentation for joint limits

See merge request omniverse/warp!920
  • Loading branch information
mmacklin committed Dec 12, 2024
2 parents 74bbdef + 66328b7 commit c7709e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions warp/sim/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,14 +578,14 @@ class Model:
This setting is not supported by :class:`FeatherstoneIntegrator`.
joint_limit_lower (array): Joint lower position limits, shape [joint_count], float
joint_limit_upper (array): Joint upper position limits, shape [joint_count], float
joint_limit_ke (array): Joint position limit stiffness (used by the Euler integrators), shape [joint_count], float
joint_limit_kd (array): Joint position limit damping (used by the Euler integrators), shape [joint_count], float
joint_limit_lower (array): Joint lower position limits, shape [joint_axis_count], float
joint_limit_upper (array): Joint upper position limits, shape [joint_axis_count], float
joint_limit_ke (array): Joint position limit stiffness (used by the Euler integrators), shape [joint_axis_count], float
joint_limit_kd (array): Joint position limit damping (used by the Euler integrators), shape [joint_axis_count], float
joint_twist_lower (array): Joint lower twist limit, shape [joint_count], float
joint_twist_upper (array): Joint upper twist limit, shape [joint_count], float
joint_q_start (array): Start index of the first position coordinate per joint, shape [joint_count], int
joint_qd_start (array): Start index of the first velocity coordinate per joint, shape [joint_count], int
joint_q_start (array): Start index of the first position coordinate per joint (note the last value is an additional sentinel entry to allow for querying the q dimensionality of joint i via ``joint_q_start[i+1] - joint_q_start[i]``), shape [joint_count + 1], int
joint_qd_start (array): Start index of the first velocity coordinate per joint (note the last value is an additional sentinel entry to allow for querying the qd dimensionality of joint i via ``joint_qd_start[i+1] - joint_qd_start[i]``), shape [joint_count + 1], int
articulation_start (array): Articulation start index, shape [articulation_count], int
joint_name (list): Joint names, shape [joint_count], str
joint_attach_ke (float): Joint attachment force stiffness (used by :class:`SemiImplicitIntegrator`)
Expand Down

0 comments on commit c7709e1

Please sign in to comment.