mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-24 15:58:12 +08:00
* Add tangent/normal to point to bézier-rs * Add license information and general cleanup * Bump version * Add iframe demos --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
15 lines
269 B
Rust
15 lines
269 B
Rust
#![doc = include_str!("../README.md")]
|
|
|
|
pub(crate) mod compare;
|
|
|
|
mod bezier;
|
|
mod consts;
|
|
mod subpath;
|
|
mod symmetrical_basis;
|
|
mod utils;
|
|
|
|
pub use bezier::*;
|
|
pub use subpath::*;
|
|
pub use symmetrical_basis::*;
|
|
pub use utils::{Cap, Join, SubpathTValue, TValue, TValueType};
|