rust_macios/core_graphics.rs
1//! Harness the power of Quartz technology to perform lightweight 2D rendering
2//! with high-fidelity output. Handle path-based drawing, antialiased
3//! rendering, gradients, images, color management, PDF documents, and more.
4
5mod type_defs;
6pub use type_defs::*;
7
8pub mod traits;
9
10mod cg_function;
11pub use cg_function::*;
12
13mod cg_point;
14mod cg_rect;
15mod cg_size;
16
17pub use cg_point::*;
18pub use cg_rect::*;
19pub use cg_size::*;
20
21mod cg_geometry;
22pub use cg_geometry::*;