pathfinding-visualiser icon indicating copy to clipboard operation
pathfinding-visualiser copied to clipboard

Visualises pathfinding algorithms

Results 18 pathfinding-visualiser issues
Sort by recently updated
recently updated
newest added

These are not accessible or discoverable enough.

bug
enhancement

Re-running an algorithm can resize the summary, currently it snaps to the new size which is forbidden in material design.

bug

Prevent the following paths - `o - obstacle` - `. - no obstacle` - `\ - path` ``` \o o\ \. o\ \o .\ ```

bug

Currently when not animating, mainly on a large map, the animation will continue to complete after a new action is performed.

enhancement

``` function manhattanDistance(node, goal) { return Math.abs(node.x - goal.x) + Math.abs(node.y - goal.y); } function diagonalUniformDistance(node, goal) { return Math.max(Math.abs(node.x - goal.x), Math.abs(node.y - goal.y)); } function diagonalDistance(node, goal) {...

enhancement