Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benjamin-carpene/a_star_viewer_qt
A Qt viewer for the A* algorithm
https://github.com/benjamin-carpene/a_star_viewer_qt
Last synced: 28 days ago
JSON representation
A Qt viewer for the A* algorithm
- Host: GitHub
- URL: https://github.com/benjamin-carpene/a_star_viewer_qt
- Owner: benjamin-carpene
- License: mit
- Created: 2024-03-29T15:07:40.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-01T14:36:14.000Z (9 months ago)
- Last Synced: 2024-04-01T17:01:21.582Z (9 months ago)
- Language: C++
- Size: 1.72 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# a_star_viewer_qt
A simple "A* viewer/player" implementation in C++ Qt (widget) for visualizing the A* algorithm.
You can configure the algorithm with the following :
- Starting point
- End / target point
- Obstacles
- Diagonal movements
- Size of the map
- HeuristicThen you can choose the execution speed (from 1 to 25 Hz/fps) and launch the computations.
## Demo
**Screenshot**
![GUI image](pics/image.png)
**GIF demo**
![Demo](pics/demo.gif)
## Dependencies
- Qt 5.15 (widget)
- [My A* C++ implementation](https://github.com/benjamin-carpene/a_star)
(see my repos)