findPath
abstract fun findPath(start: Cell, end: Cell, travelCost: CellTravelCostSupplier): RoutingResult(source)
Finds the optimal path between the start and end cell using the given travel cost supplier.
Return
the routing result.
Parameters
start
the start cell.
end
the end cell.
travelCost
the travel cost supplier.