Files
Graphite/libraries/bezier-rs/src/lib.rs
T
9a52cae9b9 Bezier-rs: Add SubpathTValue and euclidean parameterization for subpaths (#1027)
* 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>
2023-02-17 15:33:52 -05:00

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};