Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 826 Bytes

File metadata and controls

41 lines (30 loc) · 826 Bytes

Path Planner

Demo code for path planning algorithms written in Rust/Python (for study purposes).
Rerun is used for the visualization.

Algorithms

  • A*
    astar
  • Hybrid A*
    hybrid astar
  • (RRT)
  • (Theta*)

Rust

To run A* and Hybrid A* (Rerun Viewer will spawn automatically)

cargo run -r

Python

uv sync

To run A* (Rerun Viewer will spawn automatically)

uv run astar.py

To run Hybrid A* (Rerun Viewer will spawn automatically)

uv run hybrid_astar.py

References

https://github.com/zhm-real/MotionPlanning
https://github.com/zhm-real/CurvesGenerator