// this_file: crates/vexy-vsvg-plugin-sdk/src/plugins/convert_path_data/abs_to_rel.rs
//! Converts absolute path commands to relative coordinates.
//!
//! Relative commands (`m`, `l`, `c`, etc.) are often shorter than absolute commands
//! (`M`, `L`, `C`) when the deltas are small. This module would contain the conversion
//! logic if factored out. Currently implemented inline in `mod.rs`.