//! Sizing axiom ฮฆ: fix, fill, scale.
//!
//! See prysm/layout.md ยง5.
/// Sizing primitive for one dimension.
///
/// - `Fix(k)` โ absolute, intrinsic size `k * QUANTUM`. Does not depend
/// on membrane.
/// - `Fill { weight }` โ absorbs remaining space after fix and scale
/// siblings, in proportion to its weight.
/// - `Scale { ratio, min }` โ proportional to membrane, clamped to a
/// minimum in quanta.
/// 2D sizing for an element. Each dimension is independently fix/fill/scale.