basic-pathfinding 0.2.8

Tile-based A* pathfinding in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod coord;
pub mod grid;
mod node;
pub mod pathfinding;
mod search;

#[macro_use]
extern crate serde_derive;
extern crate env_logger;
extern crate log;

// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;