bracket-pathfinding 0.8.1

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 fieldofview;

pub mod prelude {
    pub use crate::astar::*;
    pub use crate::dijkstra::*;
    pub use crate::fieldofview::*;
    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};
}