flywheel/layout/mod.rs
1//! Layout module: Pre-computed static regions for efficient rendering.
2//!
3//! Layouts are computed once at initialization or on terminal resize.
4//! There is no tree traversal at render time - just a flat `Vec<Region>`.
5
6mod rect;
7mod region;
8
9pub use rect::Rect;
10pub use region::{Layout, Region, RegionId};