Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
e1998fda56 | |||
e7c3003dcf | |||
cf6ae61859 | |||
3640078d12 | |||
c0d9a0b540 | |||
4f0bf51b5c |
15
CHANGELOG.md
15
CHANGELOG.md
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
<!-- vim-markdown-toc GFM -->
|
<!-- vim-markdown-toc GFM -->
|
||||||
|
|
||||||
|
* [3.5.4](#354)
|
||||||
|
* [3.5.3](#353)
|
||||||
|
* [3.5.2](#352)
|
||||||
* [3.5.1](#351)
|
* [3.5.1](#351)
|
||||||
* [3.5](#35)
|
* [3.5](#35)
|
||||||
* [3.4.2](#342)
|
* [3.4.2](#342)
|
||||||
@ -33,6 +36,18 @@
|
|||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
<!-- vim-markdown-toc -->
|
||||||
|
|
||||||
|
# 3.5.4
|
||||||
|
|
||||||
|
> Feb 27, 2021
|
||||||
|
|
||||||
|
- Support of `cgmath-0.18`.
|
||||||
|
|
||||||
|
# 3.5.3
|
||||||
|
|
||||||
|
> Jan 16, 2021
|
||||||
|
|
||||||
|
- Resynchronize and fix links in the README (fix in `cargo sync-readme`).
|
||||||
|
|
||||||
# 3.5.2
|
# 3.5.2
|
||||||
|
|
||||||
> Fri Jan 01, 2021
|
> Fri Jan 01, 2021
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "splines"
|
name = "splines"
|
||||||
version = "3.5.2"
|
version = "3.5.4"
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
|
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
|
||||||
description = "Spline interpolation made easy"
|
description = "Spline interpolation made easy"
|
||||||
@ -28,13 +28,13 @@ serialization = ["serde", "serde_derive"]
|
|||||||
std = []
|
std = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cgmath = { version = "0.17", optional = true }
|
cgmath = { version = ">=0.17, <0.19", optional = true }
|
||||||
glam = { version = ">=0.10, <0.12", optional = true }
|
glam = { version = ">=0.10, <0.12", optional = true }
|
||||||
nalgebra = { version = ">=0.21, <0.25", optional = true }
|
nalgebra = { version = ">=0.21, <0.25", optional = true }
|
||||||
num-traits = { version = "0.2", optional = true }
|
num-traits = { version = "0.2", optional = true }
|
||||||
serde = { version = "1", optional = true }
|
serde = { version = "1", optional = true }
|
||||||
serde_derive = { version = "1", optional = true }
|
serde_derive = { version = "1", optional = true }
|
||||||
simba = { version = ">=0.1.2, <0.4", optional = true }
|
simba = { version = ">=0.1.2, <0.5", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
float-cmp = ">=0.6, < 0.9"
|
float-cmp = ">=0.6, < 0.9"
|
||||||
|
@ -66,7 +66,7 @@ assert_eq!(spline.clamped_sample(1.1), Some(10.)); // clamped to the last key
|
|||||||
[`Spline`] curves are parametered both by the carried value (being interpolated) but also the
|
[`Spline`] curves are parametered both by the carried value (being interpolated) but also the
|
||||||
sampling type. It’s very typical to use `f32` or `f64` but really, you can in theory use any
|
sampling type. It’s very typical to use `f32` or `f64` but really, you can in theory use any
|
||||||
kind of type; that type must, however, implement a contract defined by a set of traits to
|
kind of type; that type must, however, implement a contract defined by a set of traits to
|
||||||
implement. See [the documentation of this module](crate::interpolate) for further details.
|
implement. See [the documentation of this module](https://docs.rs/splines/latest/splines/interpolate/) for further details.
|
||||||
|
|
||||||
# Features and customization
|
# Features and customization
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user