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