lattice-graph 0.3.0

Set of Lattice(Grid) based Graph Structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# lattice-graph

Extention library for [petgraph](https://crates.io/crates/petgraph).
This adds a specialized graph for lattice (or grid) based graph structures for petgraph.
This probides a smaller and faster graph than the general purpose `petgraph::Graph` struct.
It can be used for passfinding in tilemap based game.
This is for developing game, but it can be used for other purposes as well.

# Feature Status
- [x] Square grid graph.
  - [x] Loop support for square grid.
- [x] Hex grid graph.
- [ ] Hierarchical graph structure.
- [ ] Virtual graph?
- [ ] Cubic graph?

# MSRV
Needs const generics (rustc >= 1.51) to use `const-generice-wrap` feature to fold ZST shape info.