Trait astar::TwoDSearchProblem [] [src]

pub trait TwoDSearchProblem {
    fn get(&mut self, x: i32, y: i32) -> Option<u32>;

    fn diag(&self) -> bool { ... }
    fn cut_corners(&self) -> bool { ... }
}

Required Methods

Provided Methods

Implementors