docs touchup
This commit is contained in:
parent
e5a15185cb
commit
673ff157ba
@ -98,7 +98,6 @@ Successor function:
|
|||||||
|
|
||||||
Heuristic function:
|
Heuristic function:
|
||||||
|
|
||||||
// Heuristic function, Manhattan method.
|
|
||||||
public int ComputeHScore(Vector2 currentNode, Vector2 endNote)
|
public int ComputeHScore(Vector2 currentNode, Vector2 endNote)
|
||||||
{
|
{
|
||||||
return (int)(Math.Abs(endNote.X - currentNode.X) + Math.Abs(endNote.Y - currentNode.Y));
|
return (int)(Math.Abs(endNote.X - currentNode.X) + Math.Abs(endNote.Y - currentNode.Y));
|
||||||
|
Loading…
Reference in New Issue
Block a user