Example #1
0
 private void SetH(Vector2D end)
 {
     H = Astar.Heuristic(end, Position);
 }
Example #2
0
 private void SetG(Vector2D start)
 {
     G = Astar.Heuristic(start, Position);
 }