kozan_primitives/lib.rs
1//! Foundational value types for Kozan.
2//!
3//! This crate provides the core geometric and visual primitives used throughout the
4//! Kozan UI platform: 2D/3D geometry (`Point`, `Size`, `Rect`), colors (`Color`),
5//! CSS-compatible length units, affine and 3D transforms, and a typed arena allocator.
6//! These types are intentionally dependency-free and `Copy`/`Clone` where possible,
7//! serving as the shared vocabulary between layout, paint, and rendering.
8
9pub mod arena;
10pub mod color;
11pub mod geometry;
12pub mod rounded_rect;
13pub mod timing;
14pub mod transform;
15pub mod units;