Interpolation made easy.
Go to file
2019-04-16 17:40:08 +02:00
examples bumped version numbers in examples for splines dependancy 2018-09-30 21:32:22 +02:00
src Make Spline<T>::clamped_sample return Option<T> instead. #9 2019-04-16 17:40:08 +02:00
tests Make Spline<T>::clamped_sample return Option<T> instead. #9 2019-04-16 17:40:08 +02:00
.gitignore Add all target/ build dir to the .gitignore. 2018-08-07 01:28:45 +02:00
.travis.yml Add the std / no_std feature. 2018-08-09 01:38:43 +02:00
Cargo.toml Migrate to Rust 2018. 2019-04-13 21:54:17 +02:00
CHANGELOG.md 0.2.3. 2018-10-13 03:31:44 +02:00
README.md 0.2.3. 2018-10-13 03:31:44 +02:00

splines

This crate provides splines, mathematic curves defined piecewise through control keys a.k.a. knots.

Feel free to dig in the online documentation for further information.

A note on features

This crate has features! Heres a comprehensive list of what you can enable:

  • Serialization / deserialization.
    • This feature implements both the Serialize and Deserialize traits from serde for all types exported by this crate.
    • Enable with the "serialization" feature.
  • cgmath implementors.
    • Adds some useful implementations of Interpolate for some cgmath types.
    • Enable with the "impl-cgmath" feature.
  • nalgebra implementors.
    • Adds some useful implementations of Interpolate for some nalgebra types.
    • Enable with the "impl-nalgebra" feature.
  • Standard library / no standard library.
    • Its possible to compile against the standard library or go on your own without it.
    • Compiling with the standard library is enabled by default.
    • Use default-features = [] in your Cargo.toml to disable.
    • Enable explicitly with the "std" feature.