Header menu logo Nu

AStar Type

Exposes the A* path finding algorithm.

Static members

Static member Description

AStar.FindPath(start, destination, distance, estimate)

Full Usage: AStar.FindPath(start, destination, distance, estimate)

Parameters:
    start : 'Node
    destination : 'Node
    distance : Func<'Node, 'Node, float32>
    estimate : Func<'Node, float32>

Returns: Path<'Node>
start : 'Node
destination : 'Node
distance : Func<'Node, 'Node, float32>
estimate : Func<'Node, float32>
Returns: Path<'Node>

Type something to start searching.