Pathfinding v0.1.1 Pathfinding.Search View Source

Representation of a grid traversal.

Link to this section Summary

Link to this section Types

Link to this type

t() View Source
t() :: %Pathfinding.Search{
  cache: Map.t(),
  cost_threshold: Number.t() | nil,
  end_x: Number.t() | nil,
  end_y: Number.t() | nil,
  heap: Heap.t(),
  start_x: Number.t(),
  start_y: Number.t()
}

Link to this section Functions