Files
Graphite/libraries/bezier-rs/src/lib.rs
T
01a9724389 Bezier-rs: Add Euclidean parameterization to Bezier::evaluate (#828)
* Add enum to evaluate for differenciating compute type

* Add euclidean parameterization and update styling in the UI

Co-authored-by: Rob Nadal <robnadal44@gmail.com>

* Update usage of evaluate in graphite

* Add description

* Code review changes

* Update tests

* Improve ComputeType ergonomics

* Large code review/cleanup pass

Co-authored-by: Rob Nadal <robnadal44@gmail.com>
Co-authored-by: Keavon Chambers <keavon@keavon.com>
2022-11-18 20:37:52 -08:00

11 lines
163 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::ComputeType;