Пример #1
0
        internal GeometricPathAStarNode MakeNeighbor(int row, int col)
        {
            GeometricPathAStarNode neighbor = new GeometricPathAStarNode(TestCase);

            neighbor.PreviousNode = this;

            neighbor.Coords   = new Coords(row, col);
            neighbor.TestCase = this.TestCase;

            neighbor.ComputeDistances();
            return(neighbor);
        }