1 2 3 4 5 6 7
//! The bundle's link graph: model extraction and force-directed layout. pub mod layout; pub mod model; pub use layout::{LayoutEngine, LayoutMode}; pub use model::{EdgeKind, GraphEdge, GraphModel, GraphNode, NodeKind};