2018-08-08 00:35:24 +02:00
|
|
|
|
# splines
|
|
|
|
|
|
2018-08-05 18:28:46 +02:00
|
|
|
|
This crate provides [splines](https://en.wikipedia.org/wiki/Spline_(mathematics)), mathematic curves
|
|
|
|
|
defined piecewise through control keys a.k.a. knots.
|
|
|
|
|
|
|
|
|
|
Feel free to dig in the [online documentation](https://docs.rs/splines) for further information.
|
2018-08-08 00:35:24 +02:00
|
|
|
|
|
|
|
|
|
## A note on features
|
|
|
|
|
|
|
|
|
|
This crate has features! Here’s a comprehensive list of what you can enable:
|
|
|
|
|
|
2018-08-09 01:23:45 +02:00
|
|
|
|
- **Serialization / deserialization.**
|
2018-08-08 00:35:24 +02:00
|
|
|
|
+ This feature implements both the `Serialize` and `Deserialize` traits from `serde`.
|
2018-08-09 01:23:45 +02:00
|
|
|
|
+ Enable with the `"serialization"` feature.
|
2018-09-20 11:56:57 +02:00
|
|
|
|
- **[cgmath](https://crates.io/crates/cgmath) implementors**
|
|
|
|
|
+ Adds some usefull implementations of `Interpolate` for some cgmath types.
|
|
|
|
|
+ Enable with the `"impl-cgmath"` feature.
|
|
|
|
|
- **Standard library / no stdandard library.**
|
2018-08-09 01:23:45 +02:00
|
|
|
|
+ It’s possible to compile against the standard library or go on your own without it.
|
|
|
|
|
+ Compiling with the standard library is enabled by default.
|
|
|
|
|
+ Use `defaut-features = []` in your `Cargo.toml` to disable.
|
|
|
|
|
+ Enable explicitly with the `"std"` feataure.
|