Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
- Heuristic

Then 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)