Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in rbda.rst #145

Merged
merged 2 commits into from
Apr 29, 2024
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
2 changes: 1 addition & 1 deletion docs/modules/rbda.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Composite Rigid Body Algorithm
.. automodule:: jaxsim.rbda.crba
:members:

Forward Kinetmatics
Forward Kinematics
~~~~~~~~~~~~~~~~~~~

.. automodule:: jaxsim.rbda.forward_kinematics
Expand Down
4 changes: 2 additions & 2 deletions src/jaxsim/api/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def base_velocity(self) -> jtp.Vector:
def generalized_position(self) -> tuple[jtp.Matrix, jtp.Vector]:
r"""
Get the generalized position
:math:`\\mathbf{q} = ({}^W \\mathbf{H}_B, \\mathbf{s}) \\in \text{SO}(3) \times \\mathbb{R}^n`.
:math:`\mathbf{q} = ({}^W \mathbf{H}_B, \mathbf{s}) \in \text{SO}(3) \times \mathbb{R}^n`.

Returns:
A tuple containing the base transform and the joint positions.
Expand All @@ -429,7 +429,7 @@ def generalized_position(self) -> tuple[jtp.Matrix, jtp.Vector]:
def generalized_velocity(self) -> jtp.Vector:
r"""
Get the generalized velocity
:math:`\boldsymbol{\nu} = (\boldsymbol{v}_{W,B};\\, \boldsymbol{\\omega}_{W,B};\\, \\mathbf{s}) \\in \\mathbb{R}^{6+n}`
:math:`\boldsymbol{\nu} = (\boldsymbol{v}_{W,B};\, \boldsymbol{\omega}_{W,B};\, \mathbf{s}) \in \mathbb{R}^{6+n}`

Returns:
The generalized velocity in the active representation.
Expand Down
Loading