Skip to content

Commit

Permalink
fixed relative paths, symbolic linked readme, and generated doc htmls
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexseal committed Jan 10, 2024
1 parent c3c52b3 commit 1fd8611
Show file tree
Hide file tree
Showing 24 changed files with 9,370 additions and 7 deletions.
7 changes: 7 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=./mplib.html"/>
</head>
</html>
267 changes: 267 additions & 0 deletions doc/mplib.html

Large diffs are not rendered by default.

243 changes: 243 additions & 0 deletions doc/mplib/examples.html

Large diffs are not rendered by default.

683 changes: 683 additions & 0 deletions doc/mplib/examples/collision_avoidance.html

Large diffs are not rendered by default.

733 changes: 733 additions & 0 deletions doc/mplib/examples/constrained_planning.html

Large diffs are not rendered by default.

597 changes: 597 additions & 0 deletions doc/mplib/examples/demo.html

Large diffs are not rendered by default.

1,050 changes: 1,050 additions & 0 deletions doc/mplib/examples/demo_setup.html

Large diffs are not rendered by default.

536 changes: 536 additions & 0 deletions doc/mplib/examples/detect_collision.html

Large diffs are not rendered by default.

667 changes: 667 additions & 0 deletions doc/mplib/examples/moving_robot.html

Large diffs are not rendered by default.

866 changes: 866 additions & 0 deletions doc/mplib/examples/two_stage_motion.html

Large diffs are not rendered by default.

3,424 changes: 3,424 additions & 0 deletions doc/mplib/planner.html

Large diffs are not rendered by default.

238 changes: 238 additions & 0 deletions doc/mplib/pymp.html

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions doc/search.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions mplib/README.md
5 changes: 4 additions & 1 deletion mplib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
from .planner import Planner
"""
.. include:: ./README.md
"""

from mplib.planner import Planner
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sapien.core as sapien
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class PlanningDemo(DemoSetup):
""" The shows the planner's ability to generate a collision free path with the straight path causes collisions """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import numpy as np
import transforms3d
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class ConstrainedPlanningDemo(DemoSetup):
"""
Expand Down
2 changes: 1 addition & 1 deletion examples/demo.py → mplib/examples/demo.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sapien.core as sapien
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class PlanningDemo(DemoSetup):
"""
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3

import mplib
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class DetectCollisionDemo(DemoSetup):
"""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sapien.core as sapien
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class PlanningDemo(DemoSetup):
""" This is identical to demo.py except the whole scene is shifted to the bottom right by 1 meter respectively """
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sapien.core as sapien
import mplib
import numpy as np
from demo_setup import DemoSetup
from .demo_setup import DemoSetup

class PlanningDemo(DemoSetup):
"""
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,6 @@ def build_extension(self, ext):
ext_modules=[CMakeExtension("mplib.pymp")],
cmdclass={"build_ext": CMakeBuild},
zip_safe=False,
package_data={"mplib": ["README.md"]},
include_package_data=True,
)

0 comments on commit 1fd8611

Please sign in to comment.