mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-24 15:18:11 +08:00
* Added SubpathTValue and euclidean parameterization for subpaths * Small fix * Added bounds checking to get_segment * Code review * code review nit for clarity --------- Co-authored-by: Hannah Li <hannahli2010@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
11 lines
175 B
Rust
11 lines
175 B
Rust
//! Bezier-rs: A Bezier Math Library for Rust
|
|
|
|
mod bezier;
|
|
mod consts;
|
|
mod subpath;
|
|
mod utils;
|
|
|
|
pub use bezier::*;
|
|
pub use subpath::*;
|
|
pub use utils::{SubpathTValue, TValue};
|