hui-shared 0.1.0-alpha.6

internal crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! contains types which represent the sides and corners of a rectangular shape.

//XXX: this is kinda a mess, either move the rect struct here or come up with a better name for this module
#[allow(clippy::module_inception)]
mod rect;
pub use rect::Rect;

mod sides;
pub use sides::Sides;

mod corners;
pub use corners::Corners;

mod color;
pub use color::FillColor;