https://github.com/shahank42/a-pathfinding-demo
Demonstration of A* Pathfinding through a randomly generated maze.
https://github.com/shahank42/a-pathfinding-demo
a-star-algorithm a-star-path-finding algorithms javascipt maze maze-solver maze-solver-simulation p5js p5js-animation p5js-sketch
Last synced: 22 days ago
JSON representation
Demonstration of A* Pathfinding through a randomly generated maze.
- Host: GitHub
- URL: https://github.com/shahank42/a-pathfinding-demo
- Owner: shahank42
- License: mit
- Created: 2022-10-14T12:39:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-21T14:37:27.000Z (about 2 years ago)
- Last Synced: 2025-06-02T02:49:31.486Z (about 1 month ago)
- Topics: a-star-algorithm, a-star-path-finding, algorithms, javascipt, maze, maze-solver, maze-solver-simulation, p5js, p5js-animation, p5js-sketch
- Language: JavaScript
- Homepage: https://shahank42.github.io/A-Pathfinding-Demo/
- Size: 214 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A-Pathfinding-Demo
Demonstration of Pathfinding through a randomly generated maze
Check it out here at: https://shahank42.github.io/A-Pathfinding-Demo
# Parameters

The `sketch.js` file contains the above parameters which can be modified for different results on the simulation.
# Implementation Details
I found this project buried in my archives from way back in 2019, when I didn't know how to use GitHub. So what better opportunity to upload and host it on the web than now?!
# Resources Used
* Videos of Dan Shiffman from  on this topic (Parts  and  and ). Super duper helpful in understanding what was going on, how the algorithm worked and how to structure the project.
* https://en.wikipedia.org/wiki/A*_search_algorithm, obviously.