hierarchical_pathfinding 0.5.0

Quickly approximate Paths on a Grid
Documentation
1
2
3
4
5
6
7
8
9
10
mod abstract_path;
pub use abstract_path::AbstractPath;

mod generic_path;
pub use generic_path::*;

mod path_segment;
pub use path_segment::PathSegment;

pub type Cost = usize;