mod.rs

487 B · rust · 13 lines

1/// The role tags, lengths, tip, junction and component counts of a network.2pub mod census;3/// The core, edge and tunnel networks lifted from a grid.4pub mod extract;5/// The force-directed layout that lets a lattice relax.6pub mod layout;7/// The node, branch and network types.8pub mod models;910pub use census::{census, largest_component, roles, Census, Role};11pub use extract::{core_graph, edge_graph, tunnel_graph};12pub use layout::Layout;13pub use models::{Branch, Network, Node};