PathFinding.js
PathFinding.js copied to clipboard
unexpected route
i used A* with diagonal true
In the absence of wall , the route is perfect
but if the wall pattern look like the following pic , i can't get the expected result like the absence of wall
allowDiagonal
only allows the algorithm to cross a single corner hence dontCrossCorners
. If you want your expected behavior, see #157