Skip to main content

easyofd_core/graph/
mod.rs

1//! 图形子包 (graph)。
2//!
3//! 对应 GB/T 33190-2016 第 9 节,包含路径对象和路径缩写数据等类型。
4
5mod abbreviated_data;
6mod ct_path;
7pub mod tight;
8
9pub use abbreviated_data::{AbbreviatedData, PathCommand};
10pub use ct_path::{CT_Path, FillRule};
11pub use tight::{ArcCommand, CloseCommand, CubicBezier, LineCommand, MoveCommand, QuadraticBezier};