Skip to content

Commit

Permalink
Add sixd and utils modules
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Oct 4, 2023
1 parent b5306c9 commit cca36a6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py → docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

# -- Version information

sys.path.insert(0, pathlib.Path(__file__).parent.absolute())
sys.path.insert(0, pathlib.Path(__file__).parents[2].absolute())
version_file = (
pathlib.Path(__file__).parent.absolute() / "src" / "jaxsim" / "version.txt"
pathlib.Path(__file__).parents[2].absolute() / "src" / "jaxsim" / "version.txt"
)

with open(version_file) as file_handler:
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build
set SOURCEDIR=.
set BUILDDIR=_build

if "%1" == "" goto help

Expand Down
9 changes: 9 additions & 0 deletions docs/modules/sixd.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. _sixd:


SixD
==========

.. automodule:: jaxsim.sixd
:members:

9 changes: 9 additions & 0 deletions docs/modules/utils.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. _utils:


Utils
==========

.. automodule:: jaxsim.utils
:members:

0 comments on commit cca36a6

Please sign in to comment.