Xueqiao (Joe) Xu

Results 21 comments of Xueqiao (Joe) Xu

Thanks for your suggestion. I'll consider adding the links :)

IMO, the best way to handle it is to introduce a new flag called `cornerCuttingStrategy` that can be used to represent both the `dontCrossCorners` flag and the `allowCrossDiagonal` flag. We...

@yyx990803 Yes it will be. And I think the current API is messy and needs to be redesigned. Such as 1. Using a single function with a object option for...

Sorry, I'm not familiar with pathfinding algorithms for non-euclidean space.

@MaksJS The only scenario in which the `clone` method is useful is when you have to apply the pathfinding onto the same map layout(same walkable/un-walkable configuration). This kind of scenario...

@yi Nice bit hacking. It's a pity that `Buffer` is nodejs exclusive. I plan to have some experiments on using the `ArrayBuffer`, and fall back to the vanilla `Array` on...

@MaksJS I have done some experiments and confirmed that the bottleneck is instantiating a large number of `Node` and storing them in a two-dimensional matrix. By using a compact representation...

Thanks for the report. Could you please tell me what browser are you using and if there's a way to reproduce the bug?

Confirmed. I'll try to locate and fix the bug.

This is cool, and I thought about it before. The major issue that prevented me from implementing it is the dynamic size of the map. Currently, the size of the...