Declaration
public IEnumerable<TCell> FindPath(
TCell from,
TCell to
)
Summary
Finds the shortest path from the specified
from cell to the specified
to
cell.
Parameters
TCell | from |
The starting cell. |
TCell | to |
The destination cell. |
Returns
A collection containing every cell along the path, including
from and
to.