uzor 1.0.4

Core UI engine — geometry, interaction, input state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Animated number displays for uzor
//!
//! Provides rendering-agnostic number animation state computation.
//! It computes positions, opacities, and values that a renderer can use.
//!
//! # Components
//!
//! - [`Counter`] - Rolling slot-machine style digit display with spring physics
//! - [`CountUp`] - Spring-animated number that counts from start to end value

pub mod counter;
pub mod count_up;

pub use counter::{Counter, CounterState, DigitState, PlaceValue};
pub use count_up::{CountUp, CountUpState, Direction};