mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
This commit adds "Code Link" sections to documentation across various path planning modules, linking to relevant class and function APIs. Additionally, several class renaming changes were made, such as `Dijkstra` to `DijkstraPlanner` and `eta3_trajectory` to `Eta3SplineTrajectory`, to enhance naming consistency. Minor fixes include file restructuring and image renaming for the RRT module.
28 lines
634 B
ReStructuredText
28 lines
634 B
ReStructuredText
RRT\*
|
|
~~~~~
|
|
|
|
.. figure:: https://github.com/AtsushiSakai/PythonRoboticsGifs/raw/master/PathPlanning/RRTstar/animation.gif
|
|
|
|
This is a path planning code with RRT\*
|
|
|
|
Black circles are obstacles, green line is a searched tree, red crosses are start and goal positions.
|
|
|
|
Code Link
|
|
^^^^^^^^^^
|
|
|
|
.. autoclass:: PathPlanning.RRTStar.rrt_star.RRTStar
|
|
|
|
|
|
Simulation
|
|
^^^^^^^^^^
|
|
|
|
.. image:: rrt_star/rrt_star_1_0.png
|
|
:width: 600px
|
|
|
|
|
|
Ref
|
|
^^^
|
|
- `Sampling-based Algorithms for Optimal Motion Planning <https://arxiv.org/pdf/1105.1186>`__
|
|
- `Incremental Sampling-based Algorithms for Optimal Motion Planning <https://arxiv.org/abs/1005.0416>`__
|
|
|