#vector #geometry #graphics #curve-point

bezier-nd

Bezier curve implementations using N-dimensional vectors

6 releases

0.5.0 Feb 19, 2023
0.1.4 Jun 23, 2021

#223 in Graphics APIs

Download history 29/week @ 2023-12-04 8/week @ 2023-12-11 174/week @ 2023-12-18 524/week @ 2023-12-25 155/week @ 2024-01-08 1431/week @ 2024-01-15 179/week @ 2024-01-22 476/week @ 2024-01-29 299/week @ 2024-02-05 917/week @ 2024-02-12 444/week @ 2024-02-19 543/week @ 2024-02-26 147/week @ 2024-03-04 219/week @ 2024-03-11 381/week @ 2024-03-18

1,337 downloads per month
Used in 2 crates

MIT/Apache

46KB
473 lines

bezier-nd

A Bezier curve class supporting linear, quadratic and cubic Bezier curves, using an arbitrary point class.

Example uses would be for 2-dimensional Bezier curves whose coordinates are [f64; 2], or for 3-dimensional Bezier curves using coordinates of [f32; 3].

The Bezier curve supports bisection, and then splitting into straight lines within a given straightness bound; iterators are provided to automatically trace a Bezier as lines or points within such a straightness, for rendering puroses.

The Bezier type also supports rounding of corners and circular arc generation, utilizing a very accurate function for any angle of rounding up to 180 degrees, derived from a curve-fit from experimental data, rather than an explicit mathematical function for the control point generation (the standard analytical approach).

This crate is in beta; it is used in a small number of applications, and the functionality is mature; the API is stable, but may be enhanced.

Usage

Add this to your Cargo.toml:

[dependencies]
bezier-nd = "0.5"

Releases

Release notes are available in RELEASES.md.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.7–1.3MB
~30K SLoC