pub fn path_from_search_map(
search_map: &SearchMap,
start: Point,
) -> Option<Path>Expand description
Takes a result from dijkstra map and returns a best path from start to the goal set by the search map.
Returns None when start is not reachable from the goal set.
ยงPanics
Panics when start is outside the search map.