vexy-vsvg-plugin-sdk 2.4.2

Plugin SDK for vexy-vsvg
Documentation
1
2
3
4
5
6
7
// 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`.