Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benjamin-davies/hex-maze
Generates a maze on a hexagonal grid using randomized DFS, then solves it using A*.
https://github.com/benjamin-davies/hex-maze
Last synced: about 1 month ago
JSON representation
Generates a maze on a hexagonal grid using randomized DFS, then solves it using A*.
- Host: GitHub
- URL: https://github.com/benjamin-davies/hex-maze
- Owner: Benjamin-Davies
- Created: 2024-11-14T09:00:50.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-23T02:08:32.000Z (about 1 month ago)
- Last Synced: 2024-11-23T02:30:02.649Z (about 1 month ago)
- Language: Rust
- Homepage:
- Size: 2.74 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hex Maze
![Demonstration video](docs/demo.gif)
Generates a maze on a hexagonal grid using randomized DFS, then solves it using A*. The output is displayed in the terminal.
**NOTE**: Only works on platforms with libc (Linux, MacOS, etc.) because I wanted to mess around and work with libc directly.