Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
c0d9a0b540 | |||
4f0bf51b5c | |||
cc2b9c75a0 | |||
60952acb73 | |||
fb67b32959 | |||
ab543b61e8 | |||
73df77380b | |||
08bcf902a4 |
21
CHANGELOG.md
21
CHANGELOG.md
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
<!-- vim-markdown-toc GFM -->
|
<!-- vim-markdown-toc GFM -->
|
||||||
|
|
||||||
|
* [3.5.3](#353)
|
||||||
|
* [3.5.2](#352)
|
||||||
|
* [3.5.1](#351)
|
||||||
* [3.5](#35)
|
* [3.5](#35)
|
||||||
* [3.4.2](#342)
|
* [3.4.2](#342)
|
||||||
* [3.4.1](#341)
|
* [3.4.1](#341)
|
||||||
@ -32,6 +35,24 @@
|
|||||||
|
|
||||||
<!-- vim-markdown-toc -->
|
<!-- vim-markdown-toc -->
|
||||||
|
|
||||||
|
# 3.5.3
|
||||||
|
|
||||||
|
> Jan 16, 2021
|
||||||
|
|
||||||
|
- Resynchronize and fix links in the README (fix in `cargo sync-readme`).
|
||||||
|
|
||||||
|
# 3.5.2
|
||||||
|
|
||||||
|
> Fri Jan 01, 2021
|
||||||
|
|
||||||
|
- Support of `nalgebra-0.24`.
|
||||||
|
|
||||||
|
# 3.5.1
|
||||||
|
|
||||||
|
> Dec 5th, 2020
|
||||||
|
|
||||||
|
- Support of `glam-0.11`.
|
||||||
|
|
||||||
# 3.5
|
# 3.5
|
||||||
|
|
||||||
> Nov 23rd, 2020
|
> Nov 23rd, 2020
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "splines"
|
name = "splines"
|
||||||
version = "3.5.0"
|
version = "3.5.3"
|
||||||
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"
|
||||||
@ -29,8 +29,8 @@ std = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cgmath = { version = "0.17", optional = true }
|
cgmath = { version = "0.17", optional = true }
|
||||||
glam = { version = "0.10", optional = true }
|
glam = { version = ">=0.10, <0.12", optional = true }
|
||||||
nalgebra = { version = ">=0.21, <0.24", 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 }
|
||||||
|
@ -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