Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sutac/pathfinder
A simple project based on an algorithm that finds a path between points and moves on the points in between.
https://github.com/sutac/pathfinder
algorithms javascript jsdoc pathfinding
Last synced: 4 days ago
JSON representation
A simple project based on an algorithm that finds a path between points and moves on the points in between.
- Host: GitHub
- URL: https://github.com/sutac/pathfinder
- Owner: sutaC
- Created: 2024-03-05T13:42:25.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-07T15:58:10.000Z (8 months ago)
- Last Synced: 2024-03-07T18:04:54.581Z (8 months ago)
- Topics: algorithms, javascript, jsdoc, pathfinding
- Language: JavaScript
- Homepage: https://sutac.github.io/Pathfinder/
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pathfinder
A simple project based on an algorithm that finds a path between points and moves on the points in between.
## Technologies
- JavaScript
- JSDoc## How to start?
1. You only need to serve static files
## How it works?
For each point of the path, the algorithm searches for the closest point from the list, which is closer to the end point. This continues until a complete connection is created from start to finish.