mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-25 12:18:13 +08:00
* Add euclidean option for lut * Add lut for subpath * Fix rust formatting * Fixed breakages caused by UI updates * Code cleanup * Make ProjectionOptions optional --------- Co-authored-by: Rob Nadal <robnadal44@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
12 lines
222 B
Rust
12 lines
222 B
Rust
//! Bezier-rs: A Bezier Math Library for Rust
|
|
pub(crate) mod compare;
|
|
|
|
mod bezier;
|
|
mod consts;
|
|
mod subpath;
|
|
mod utils;
|
|
|
|
pub use bezier::*;
|
|
pub use subpath::*;
|
|
pub use utils::{Cap, Join, SubpathTValue, TValue, TValueType};
|