1
0
Fork 0

docs touchup

This commit is contained in:
BOTLester 2020-05-04 01:58:05 +02:00
parent e5a15185cb
commit 673ff157ba
1 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,7 @@ A* main loop:
Successor function:
private List<Nodes> GetAdjacentNodes(Vector2 currentPos)
private List<Nodes> GetAdjacentNodes(Vector2 currentPos)
{
var adjacentNodes = new List<Nodes>()
@ -98,7 +98,6 @@ Successor function:
Heuristic function:
// Heuristic function, Manhattan method.
public int ComputeHScore(Vector2 currentNode, Vector2 endNote)
{
return (int)(Math.Abs(endNote.X - currentNode.X) + Math.Abs(endNote.Y - currentNode.Y));