-
Notifications
You must be signed in to change notification settings - Fork 505
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
Exposed all existing documentation in Articulated_agents, articulated_agent_controllers, core, and config modules #1736
Conversation
resets to 0. | ||
:property ee_offset: The 3D offset from the end-effector link to the true | ||
end-effector position. | ||
:property arm_init_params: The starting joint angles of the arm. If None, resets to 0. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrapping the docstring like it was before shouldn't cause any problems for the doc generator. The successive lines just need to be indented respective to the first :property :
line.
@@ -29,7 +30,7 @@ class Motion: | |||
:param joints_quat_array: num_poses x num_joints x 4 array, containing the join orientations | |||
:param transform_array: num_poses x 4 x 4 array, containing the root transform | |||
:param displacement: on each pose, how much forward displacement was there? | |||
Used to measure how many poses we should advance to move a cerain amount | |||
Used to measure how many poses we should advance to move a cerain amount |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I.e., this will most probably cause a problem -- it should be indented like before, or on a single line.
…into labdocsv1 Addition of HITL module
… core, and config modules
add minimal.py
…at-lab into labdocsv1 include circleci fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One typo, otherwise good to go.
:param joints_quat: list or array of num_joints * 4 elements, with the rotation quaternions | ||
:param root_transform: Matrix4 with the root transform. | ||
:param root_transform: Matrix4 with the root trasnform. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:param root_transform: Matrix4 with the root trasnform. | |
:param root_transform: Matrix4 with the root transform. |
…_agent_controllers, core, and config modules (facebookresearch#1736) * Update completed class/function documentation in labdocsv1 * pre-commit passed * Exposed class modules * Exposed methods in Articulated_agents, articulated_agent_controllers, core, and config modules * fix duplicate param causing doc build failure --------- Co-authored-by: “Sam <“henrysamer@meta.com”> Co-authored-by: aclegg3 <alexanderwclegg@gmail.com>
…_agent_controllers, core, and config modules (facebookresearch#1736) * Update completed class/function documentation in labdocsv1 * pre-commit passed * Exposed class modules * Exposed methods in Articulated_agents, articulated_agent_controllers, core, and config modules * fix duplicate param causing doc build failure --------- Co-authored-by: “Sam <“henrysamer@meta.com”> Co-authored-by: aclegg3 <alexanderwclegg@gmail.com>
Motivation and Context
Improve documentation coverage and quality in habitat-lab. Add type hints to functions and classes to enhance clarity, facilitate static analysis, and assist in bug detection.
How Has This Been Tested
Changes tested through local build verification and validation using tools like mypy.
Types of changes
Checklist