Files
Graphite/libraries/bezier-rs/src/lib.rs
T
76be1f8515 Bezier-rs: Updated Bezier function signatures to accept TValue (#967)
* Create helper for converting d to t values

* Add euclidean option for tangent and normal

* Modified bezier functions signatures to accept ComputeType

* Stylistic changes per review

* Added ComputeType documentation

* Renamed ComputeType to TValue

* Fixed comments

* Fixed failing unit tests

* Code review

* Fix comments in code review

* Renamed compute_type_to_parametric to t_value_to_parametric

---------

Co-authored-by: Linda Zheng <thelindazheng@gmail.com>
Co-authored-by: Keavon Chambers <keavon@keavon.com>
2023-02-13 12:31:51 -05:00

11 lines
158 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::TValue;