[][src]Module pathfinding::grid

Rectangular grid in which vertices can be added or removed, with or without diagonal links.

Structs

EdgesIterator

Iterator returned by calling .edges() on a grid.

Grid

Representation of a rectangular grid in which vertices can be added or removed. Edges are automatically created between adjacent vertices. By default, only vertical and horizontal edges are created, unless diagonal mode is enabled.

GridIntoIterator

Iterator returned by calling .into_iter() on a grid.

GridIterator

Iterator returned by calling .iter() on a grid.