python-pathfinding
python-pathfinding copied to clipboard
Implementation of common pathfinding algorithms
**Describe the bug** Grid does not allow an algorithm to make a diagonal crossing over a border **To Reproduce** ```python from pathfinding.core.grid import Grid, DiagonalMovement grid = Grid(5, 5) grid.set_passable_left_right_border()...
Thanks for this library. Being new to pathfinding, I used the A* basic example at it ran right away. **Is your feature request related to a problem? Please describe.** For...
Implement flowfields, inspired by https://www.youtube.com/watch?v=QCsh_nzF0FY
Hi. Thank you for your library. I am implementing path precalculation for given move map (black and white image) with size 1024*1024 and 11k edges on it and always after...