1 2 3 4 5 6 7 8 9
//! Layout algorithms and the character grid canvas. pub mod grid; pub mod layered; pub mod subgraph; pub use grid::Grid; pub use layered::{LayoutConfig, layout}; pub use subgraph::{SubgraphBounds, compute_subgraph_bounds};