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...
change workflow so we use tags instead of the release-branch
Hey there, I've been investigating a memory issue in the SimpleHeap implementation and found that `removed_node_tuples` can grow indefinitely during pathfinding, especially on larger grids. The problem is that when...
Nice library. It would be nice to have a conda distribution of this package on conda-forge.