Skip to content

Commit

Permalink
Add autodoc_default_options to conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KolinGuo committed Apr 16, 2024
1 parent 3927715 commit c585a9c
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 39 deletions.
9 changes: 9 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,16 @@

templates_path = ["_templates"]
exclude_patterns = []

maximum_signature_line_length = 88 # limit maximum method/function signature length
autodoc_default_options = {
"members": True,
"member-order": "bysource",
"inherited-members": True,
"show-inheritance": True,
"undoc-members": True,
"special-members": "__init__",
}


# -- Options for HTML output -------------------------------------------------
Expand Down
3 changes: 0 additions & 3 deletions docs/source/reference/Planner.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------

.. autoclass:: mplib.Planner
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/PlanningWorld.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------------

.. autoclass:: mplib.PlanningWorld
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/collision_detection/fcl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ fcl
----------

.. automodule:: mplib.collision_detection.fcl
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/collision_detection/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ collision_detection
------------------------------------------

.. automodule:: mplib.collision_detection
:members:
:undoc-members:
:show-inheritance:

.. toctree::
:maxdepth: 2
Expand Down
3 changes: 0 additions & 3 deletions docs/source/reference/core/ArticulatedModel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------------------

.. autoclass:: mplib.ArticulatedModel
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/core/AttachedBody.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------------------

.. autoclass:: mplib.AttachedBody
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/kinematics/kdl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ kdl
-------

.. automodule:: mplib.kinematics.kdl
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/kinematics/pinocchio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ pinocchio
--------------

.. automodule:: mplib.kinematics.pinocchio
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/planning/ompl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ ompl
------------

.. automodule:: mplib.planning.ompl
:members:
:undoc-members:
:show-inheritance:
6 changes: 0 additions & 6 deletions docs/source/reference/sapien_utils.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,5 @@
------------------------------------------

.. autoclass:: mplib.sapien_utils.SapienPlanningWorld
:members:
:undoc-members:
:show-inheritance:

.. autoclass:: mplib.sapien_utils.SapienPlanner
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/urdf_utils.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------------

.. automodule:: mplib.urdf_utils
:members:
:undoc-members:
:show-inheritance:
3 changes: 0 additions & 3 deletions docs/source/reference/utils/pose.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
-------------------------

.. autoclass:: mplib.Pose
:members:
:undoc-members:
:show-inheritance:

0 comments on commit c585a9c

Please sign in to comment.