JumpPointFinder constructor
JumpPointFinder([
- HeuristicFn? heuristic
Implementation
JumpPointFinder([this.heuristic]) {
if (heuristic == null) {
heuristic = Heuristic.manhattan;
}
}