Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.08 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.08 KB

CorgiPath: Customizable Path Planner

Python version License

Here is a simple flow chart:

flowchart LR

c("Collision Layer")
s("Search-space Layer")

plan("Planning Module")
post("Postprocessing Module\n(optional)")
v("Matplot Viewer\n(optional)")

c --> plan
s --> plan

plan -.-> post
plan -.-> v
post -.-> v

style c stroke:#f66,stroke-width:2px
style s stroke:#f66,stroke-width:2px
style plan stroke:#f66,stroke-width:2px
style post stroke-width:2px,stroke-dasharray: 5 5
style v stroke-width:2px,stroke-dasharray: 5 5
Loading

Installation

Build your own planner

Development in vscode

poetry config virtualenvs.in-project true
poetry config virtualenvs.path "./.venv"

Contribute

Thanks for taking the time to contribute!