uzor 1.0.20

Core UI engine — geometry, interaction, input state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Platform-agnostic rendering abstraction for uzor

mod context;
mod types;
mod helpers;
mod ops;
mod svg;
mod color;

pub mod icons;

pub use context::{RenderContext, RenderContextExt};
pub use types::{TextAlign, TextBaseline};
pub use helpers::{crisp, crisp_rect};
pub use ops::{RenderOp, RenderOps, execute_ops};
pub use svg::{draw_svg_icon, draw_svg_icon_rotated, draw_svg_multicolor};
pub use color::parse_color;