folio_core/lib.rs
1//! Core primitive types for the Folio PDF library.
2
3mod color;
4mod date;
5mod error;
6mod matrix;
7mod point;
8mod rect;
9
10pub use color::ColorPt;
11pub use date::PdfDate;
12pub use error::{FolioError, Result};
13pub use matrix::Matrix2D;
14pub use point::{Point, QuadPoint};
15pub use rect::Rect;