mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 07:18:04 +08:00
* Change Bezier to_svg to include handles and endpoints * Move params into brackets of format macro, remove unused comment * Use write macro instead of format * Fix path for watched directory * Refactor functions to remove ToSVGOptions
12 lines
160 B
Rust
12 lines
160 B
Rust
//! Bezier-rs: A Bezier Math Library for Rust
|
|
|
|
mod bezier;
|
|
mod consts;
|
|
mod subpath;
|
|
mod svg;
|
|
mod utils;
|
|
|
|
pub use bezier::*;
|
|
pub use subpath::*;
|
|
pub use svg::*;
|