Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linebender/kurbo
A Rust library for manipulating curves
https://github.com/linebender/kurbo
Last synced: 5 days ago
JSON representation
A Rust library for manipulating curves
- Host: GitHub
- URL: https://github.com/linebender/kurbo
- Owner: linebender
- License: apache-2.0
- Created: 2018-12-27T17:17:06.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-06T14:06:07.000Z (about 1 month ago)
- Last Synced: 2024-10-13T06:32:24.966Z (about 1 month ago)
- Language: Rust
- Size: 746 KB
- Stars: 707
- Watchers: 28
- Forks: 68
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
- Authors: AUTHORS
Awesome Lists containing this project
README
# kurbo, a Rust 2D curves library
[![Build Status](https://github.com/linebender/kurbo/actions/workflows/ci.yml/badge.svg)](https://github.com/linebender/kurbo/actions/workflows/ci.yml)
[![Docs](https://docs.rs/kurbo/badge.svg)](https://docs.rs/kurbo)
[![Crates.io](https://img.shields.io/crates/v/kurbo.svg?maxAge=2592000)](https://crates.io/crates/kurbo)The kurbo library contains data structures and algorithms for curves and vector paths. It is probably most appropriate for creative tools, but is general enough it might be useful for other applications.
The name "kurbo" is Esperanto for "curve".
There is a focus on accuracy and good performance in high-accuracy conditions. Thus, the library might be useful in engineering and science contexts as well, as opposed to visual arts where rough approximations are often sufficient. Many approximate functions come with an accuracy parameter, and analytical solutions are used where they are practical. An example is area calculation, which is done using Green's theorem.
The library is still in fairly early development stages. There are traits intended to be useful for general curves (not just Béziers), but these will probably be reorganized.
## Minimum supported Rust Version (MSRV)
This version of Kurbo has been verified to compile with **Rust 1.65** and later.
Future versions of Kurbo might increase the Rust version requirement.
It will not be treated as a breaking change and as such can even happen with small patch releases.Click here if compiling fails.
As time has passed, some of Kurbo's dependencies could have released versions with a higher Rust requirement.
If you encounter a compilation issue due to a dependency and don't want to upgrade your Rust toolchain, then you could downgrade the dependency.```sh
# Use the problematic dependency's name and version
cargo update -p package_name --precise 0.1.1
```## Similar crates
Here we mention a few other curves libraries and touch on some of the decisions made differently here.
* [lyon_geom] has a lot of very good vector algorithms. It's most focused on rendering.
* [flo_curves] has good Bézier primitives, and seems tuned for animation. It's generic on the coordinate type, while we use `f64` for everything.
* [vek] has both 2D and 3D Béziers among other things, and is tuned for game engines.
Some code has been copied from lyon_geom with adaptation, thus the author of lyon_geom, Nicolas Silva, is credited in the [AUTHORS] file.
## More info
To learn more about Bézier curves, [A Primer on Bézier Curves] by Pomax is indispensable.
## Contributing
Contributions are welcome. The [Rust Code of Conduct] applies. Please document any changes in [CHANGELOG.md] as part of your PR, and feel free to add your name to the [AUTHORS] file in any substantive pull request.
[Rust Code of Conduct]: https://www.rust-lang.org/policies/code-of-conduct
[lyon_geom]: https://crates.io/crates/lyon_geom
[flo_curves]: https://crates.io/crates/flo_curves
[vek]: https://crates.io/crates/vek
[A Primer on Bézier Curves]: https://pomax.github.io/bezierinfo/
[AUTHORS]: ./AUTHORS
[CHANGELOG.md]: ./CHANGELOG.md