flywheel-compositor 0.1.2

A zero-flicker terminal compositor for Agentic CLIs
Documentation
1
2
3
4
5
6
7
8
9
10
//! Layout module: Pre-computed static regions for efficient rendering.
//!
//! Layouts are computed once at initialization or on terminal resize.
//! There is no tree traversal at render time - just a flat `Vec<Region>`.

mod rect;
mod region;

pub use rect::Rect;
pub use region::{Layout, Region, RegionId};