Type Definition bevy::utils::petgraph::stable_graph::StableUnGraph

source ·
pub type StableUnGraph<N, E, Ix = u32> = StableGraph<N, E, Undirected, Ix>;
Expand description

A StableGraph with undirected edges.

For example, an edge between 1 and 2 is equivalent to an edge between 2 and 1.