svg_path_ops
This crate includes utility functions to work with svg paths. Works on types from svgtypes crate.
This package exposes functions to manipulate svg paths with simplification purposes. Also a path transformer fully compatible with svgpath is provided.
📦 Cargo.toml
[]
= "0.6"
🔧 Example
Translate
let translated_path = new
.translate
.to_string;
🖨️ Output Translate

Rotate
let translated_path = new
.rotate
.translate
.to_string;
🖨️ Output Rotate

Skew
let translated_path = new
.skew_x
.translate
.to_string;
🖨️ Output Skew

Scale
let translated_path = new
.scale
.translate
.to_string;
🖨️ Output Scale

📝 License
Licensed under MIT License (LICENSE).
🚧 Contributions
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the MIT license, shall be licensed as above, without any additional terms or conditions.