bracket-pathfinding 0.8.7

Pathfinding and field-of view utilities. A Star, Dijkstra. Part of the bracket-lib family.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod astar;
mod dijkstra;
mod field_of_view;

pub mod prelude {
    pub use crate::astar::*;
    pub use crate::dijkstra::*;
    pub use crate::field_of_view::*;
    pub use bracket_algorithm_traits::prelude::*;
    pub use bracket_geometry::prelude::*;

    /// Since we use `SmallVec`, it's only polite to export it so you don't have to have multiple copies.
    pub use smallvec::{smallvec, SmallVec};
}