SimplePath
Functions
Forks the path at the given position and returns a new path that starts at the same start as this path and includes this path's last cell before at at the second last index and at the last index, the given cell. If a new cell is added onto this path, it will not appear in the forked path's cell listing.
A list of all cells currently enlisted under this path. This list will always be ordered so that index 0 will be equal to start and all following cells will be connected to its predecessor. The last element will, if there are more than 1 cells, be equal to end. Modifying this list will have no effect.
Pursues this path to the given cell. This will add the given cell to the end of this path without increasing the cost of this path. If the given cell is not a neighbor of the last cell of this path, an exception will be thrown.
Pursues this path to the given cell. This will add the given cell to the end of this path without increasing the cost of this path. If the given cell is not a neighbor of the last cell of this path, an exception will be thrown.
Creates a new sub path that includes all cells from this path starting at from (inclusive) to the last cell (inclusive).
Creates a new sub path that includes all cells from this path starting at the first cell (inclusive) to to (inclusive).