2020-03-19 01:36:13 +01:00
|
|
|
|
# 3.2
|
|
|
|
|
|
|
|
|
|
> Thu Mar 19th 2020
|
|
|
|
|
|
|
|
|
|
- Add support for `nalgebra-0.20`.
|
|
|
|
|
- Add support for `float-cmp-0.6`.
|
|
|
|
|
|
2020-01-26 21:19:25 +01:00
|
|
|
|
# 3.1.0
|
|
|
|
|
|
2020-03-19 01:36:13 +01:00
|
|
|
|
> Sat Jan 26th 2020
|
2020-01-26 21:19:25 +01:00
|
|
|
|
|
|
|
|
|
- Add support for `nalgebra-0.19`.
|
|
|
|
|
|
2019-10-20 20:52:15 +02:00
|
|
|
|
# 3.0.0
|
|
|
|
|
|
2019-10-22 21:43:50 +02:00
|
|
|
|
> Tue Oct 22th 2019
|
2019-10-20 20:52:15 +02:00
|
|
|
|
|
|
|
|
|
## Major changes
|
|
|
|
|
|
|
|
|
|
- Sampling now requires the value of the key to be `Linear<T>` for `Interpolate<T>`. That is needed
|
|
|
|
|
to ease some interpolation mode (especially Bézier).
|
|
|
|
|
|
|
|
|
|
## Patch changes
|
|
|
|
|
|
|
|
|
|
- Fix Bézier interpolation when the next key is Bézier too.
|
|
|
|
|
|
2019-10-17 15:31:05 +02:00
|
|
|
|
# 2.2.0
|
|
|
|
|
|
|
|
|
|
> Mon Oct 17th 2019
|
|
|
|
|
|
|
|
|
|
- Add `Interpolation::StrokeBezier`.
|
|
|
|
|
|
|
|
|
|
# 2.1.1
|
|
|
|
|
|
|
|
|
|
> Mon Oct 17th 2019
|
|
|
|
|
|
|
|
|
|
- Licensing support in the crate.
|
|
|
|
|
|
2019-09-30 12:49:36 +02:00
|
|
|
|
# 2.1
|
|
|
|
|
|
|
|
|
|
> Mon Sep 30th 2019
|
|
|
|
|
|
|
|
|
|
- Add `Spline::sample_with_key` and `Spline::clamped_sample_with_key`. Those methods allow one to
|
|
|
|
|
perform the regular `Spline::sample` and `Spline::clamped_sample` but also retreive the base
|
|
|
|
|
key that was used to perform the interpolation. The key can be inspected to get the base time,
|
|
|
|
|
interpolation, etc. The next key is also returned, if present.
|
|
|
|
|
|
2019-09-24 21:31:18 +02:00
|
|
|
|
# 2.0.1
|
|
|
|
|
|
|
|
|
|
> Tue Sep 24th 2019
|
|
|
|
|
|
|
|
|
|
- Fix the cubic Bézier curve interpolation. The “output” tangent is now taken by mirroring the
|
|
|
|
|
next key’s tangent around its control point.
|
|
|
|
|
|
2019-09-24 10:42:03 +02:00
|
|
|
|
# 2.0.0
|
2019-09-23 19:53:52 +02:00
|
|
|
|
|
2019-09-24 21:31:18 +02:00
|
|
|
|
> Mon Sep 23rd 2019
|
2019-09-24 10:42:03 +02:00
|
|
|
|
|
|
|
|
|
## Major changes
|
|
|
|
|
|
|
|
|
|
- Add support for [Bézier curves](https://en.wikipedia.org/wiki/B%C3%A9zier_curve).
|
|
|
|
|
- Because of Bézier curves, the `Interpolation` type now has one more type variable to know how we
|
|
|
|
|
should interpolate with Bézier.
|
|
|
|
|
|
|
|
|
|
## Minor changes
|
2019-09-23 19:53:52 +02:00
|
|
|
|
|
2019-09-23 20:56:56 +02:00
|
|
|
|
- Add `Spline::get`, `Spline::get_mut` and `Spline::replace`.
|
2019-09-23 19:53:52 +02:00
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
# 1.0
|
|
|
|
|
|
2019-09-23 19:53:52 +02:00
|
|
|
|
> Sun Sep 22nd 2019
|
2019-09-22 19:15:57 +02:00
|
|
|
|
|
|
|
|
|
## Major changes
|
|
|
|
|
|
|
|
|
|
- Make `Spline::clamped_sample` failible via `Option` instead of panicking.
|
|
|
|
|
- Add support for polymorphic sampling type.
|
|
|
|
|
|
|
|
|
|
## Minor changes
|
|
|
|
|
|
|
|
|
|
- Add the `std` feature (and hence support for `no_std`).
|
|
|
|
|
- Add `impl-nalgebra` feature.
|
|
|
|
|
- Add `impl-cgmath` feature.
|
|
|
|
|
- Add support for adding keys to splines.
|
|
|
|
|
- Add support for removing keys from splines.
|
|
|
|
|
|
|
|
|
|
## Patch changes
|
|
|
|
|
|
|
|
|
|
- Migrate to Rust 2018.
|
|
|
|
|
- Documentation typo fixes.
|
|
|
|
|
|
|
|
|
|
# 0.2.3
|
2018-10-13 03:31:44 +02:00
|
|
|
|
|
|
|
|
|
> Sat 13th October 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Add the `"impl-nalgebra"` feature gate. It gives access to some implementors for the `nalgebra`
|
|
|
|
|
crate.
|
|
|
|
|
- Enhance the documentation.
|
2018-10-13 03:31:44 +02:00
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
# 0.2.2
|
2018-09-30 21:38:49 +02:00
|
|
|
|
|
|
|
|
|
> Sun 30th September 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Bump version numbers (`splines-0.2`) in examples.
|
|
|
|
|
- Fix several typos in the documentation.
|
2018-09-30 21:38:49 +02:00
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
# 0.2.1
|
2018-09-20 11:56:57 +02:00
|
|
|
|
|
|
|
|
|
> Thu 20th September 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Enhance the features documentation.
|
2018-09-20 11:56:57 +02:00
|
|
|
|
|
2018-09-06 15:58:10 +02:00
|
|
|
|
# 0.2
|
|
|
|
|
|
|
|
|
|
> Thu 6th September 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Add the `"std"` feature gate, that can be used to compile with the standard library.
|
|
|
|
|
- Add the `"impl-cgmath"` feature gate in order to make optional, if wanted, the `cgmath`
|
|
|
|
|
dependency.
|
|
|
|
|
- Enhance the documentation.
|
2018-09-06 15:58:10 +02:00
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
# 0.1.1
|
2018-08-08 12:10:48 +02:00
|
|
|
|
|
|
|
|
|
> Wed 8th August 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Add a feature gate, `"serialization"`, that can be used to automatically derive `Serialize` and
|
|
|
|
|
`Deserialize` from the [serde](https://crates.io/crates/serde) crate.
|
|
|
|
|
- Enhance the documentation.
|
2018-08-08 12:10:48 +02:00
|
|
|
|
|
|
|
|
|
# 0.1
|
|
|
|
|
|
|
|
|
|
> Sunday 5th August 2018
|
|
|
|
|
|
2019-09-22 19:15:57 +02:00
|
|
|
|
- Initial revision.
|