jiao 0.2.1

Cross platform 2D rendering engine
Documentation
// Copyright (c) 2022 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Apache-2.0 License that can be found
// in the LICENSE file.

pub mod alignment;
mod aspect_ratio_mode;
mod axis;
mod line;
mod margins;
mod point;
mod rect;
mod size;
pub mod sysinfo;
pub mod timer;

pub use aspect_ratio_mode::AspectRatioMode;
pub use axis::Axis;
pub use line::{Line, LineF};
pub use margins::{Margins, MarginsF};
pub use point::{Point, PointF};
pub use rect::{Rect, RectF};
pub use size::{Size, SizeF};