Skip to main content

ppt_rs/elements/
mod.rs

1//! Unified PPTX element types
2
3mod color;
4mod position;
5
6pub use color::{Color, RgbColor, SchemeColor};
7pub use position::{Position, Size, Transform, EMU_PER_CM, EMU_PER_INCH, EMU_PER_MM, EMU_PER_PT};
8
9pub use crate::core::{ElementSized, Positioned, ToXml};