-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from open-dynamic-robot-initiative/fkloss/doc…
…_joint_axes Fkloss/doc joint axes
- Loading branch information
Showing
7 changed files
with
487 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
************************* | ||
Joint Order and Direction | ||
************************* | ||
|
||
The :doc:`action and observation structs <actions_and_observations>` contain arrays for | ||
joint positions, torques, etc. Each entry in these arrays corresponds to one joint of | ||
the robot. | ||
|
||
Joint Order | ||
=========== | ||
|
||
On the finger robots, joints for each finger are ordered from the base towards the tip: | ||
|
||
.. image:: ./images/fingerpro_joint_axes.png | ||
:align: center | ||
:alt: Image of a FingerPro model with annotations of the joints rotation axes. | ||
|
||
For TriFinger robots, the joints of the three fingers ("finger0", "finger120" and | ||
"finger240") are each ordered as shown above and then concatenated. That is, the joint | ||
array is ordered like this: | ||
|
||
:: | ||
|
||
finger0_joint0, finger0_joint1, finger0_joint2, finger120_joint0, ..., finger240_joint2 | ||
|
||
|
||
See :ref:`trifinger_docs:finger_and_camera_names` on how the three fingers are mounted | ||
for TriFingerPro. | ||
|
||
|
||
Joint Directions | ||
================ | ||
|
||
For "FingerPro" and "FingerEdu" fingers, directions of rotation (i.e. which direction is | ||
positive and which is negative) is as depicted in the image above. | ||
For "FingerOne", joint 1 is inverted, the others are the same. | ||
|
||
|
||
Zero Position | ||
============= | ||
|
||
All joints are in zero-position when the finger is pointing straight down: | ||
|
||
.. image:: ./images/fingerpro_zero_position.png | ||
:align: center | ||
:alt: Image of a FingerPro model with the finger tip pointing straight down. |
This file contains 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