JumpPointFinder constructor

JumpPointFinder([
  1. HeuristicFn? heuristic
])

Implementation

JumpPointFinder([this.heuristic]) {
  if (heuristic == null) {
    heuristic = Heuristic.manhattan;
  }
}