mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-22 16:18:12 +08:00
* 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>
11 lines
158 B
Rust
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;
|