mirror of
https://github.com/Xevion/processing-projects.git
synced 2025-12-06 17:16:04 -06:00
maze gen v2 and solve approved with README setup for everything
This commit is contained in:
21
mazes/README.md
Normal file
21
mazes/README.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# mazes
|
||||
|
||||
## About
|
||||
|
||||
Projects that generate mazes using various algorithms. Developed primarily in 2018-2019. All of these are generating simple square mazes, just using different algorithms and occaisionally a little twist.
|
||||
|
||||
## Sketches
|
||||
|
||||
- **MazeGenV2** Second maze generation attempt. First *working* maze implementation. Recursive Backtracker algorithm.
|
||||
|
||||
- **MazeGenSolve** - Maze gen with a completed path shown after. Recursive Backtracker algorithm for Generation, A* algorithm for pathfinding (very similar in theory).
|
||||
|
||||
- **MazeGenBinaryTree** - Binary Tree algorithm
|
||||
|
||||
- **MazeGenGrowingTree** - Growing Tree algorithm
|
||||
|
||||
- **MazeGenKruskalTree** - Kruskal Tree algorithm
|
||||
|
||||
- **MazeGenSidewinder** - Sidewinder algorithm. A little bit buggy at the end, but properly implemented none the less.
|
||||
|
||||
- **MazeClustersCreator** - Not so much a maze as a interesting side-project when developing my maze generators. Somewhat buggy.
|
||||
Reference in New Issue
Block a user