f(n) = g(n) + h(n)
,
n
is the last node on the path, g(n)
is the cost of the path from the start node to n, and h(n)
is a heuristic that
estimates the cost of the cheapest path from n to the goal.
function(node, goal) { let dx = Math.abs(node.x - goal.x); let dy = Math.abs(node.y - goal.y); return dx + dy + (SQRT2 - 2) * Math.min(dx, dy); }