Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
e1998fda56 | |||
e7c3003dcf | |||
cf6ae61859 | |||
3640078d12 | |||
c0d9a0b540 | |||
4f0bf51b5c | |||
cc2b9c75a0 | |||
60952acb73 | |||
fb67b32959 |
21
CHANGELOG.md
21
CHANGELOG.md
@ -2,6 +2,9 @@
|
||||
|
||||
<!-- vim-markdown-toc GFM -->
|
||||
|
||||
* [3.5.4](#354)
|
||||
* [3.5.3](#353)
|
||||
* [3.5.2](#352)
|
||||
* [3.5.1](#351)
|
||||
* [3.5](#35)
|
||||
* [3.4.2](#342)
|
||||
@ -33,6 +36,24 @@
|
||||
|
||||
<!-- 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
|
||||
|
||||
> Fri Jan 01, 2021
|
||||
|
||||
- Support of `nalgebra-0.24`.
|
||||
|
||||
# 3.5.1
|
||||
|
||||
> Dec 5th, 2020
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "splines"
|
||||
version = "3.5.1"
|
||||
version = "3.5.4"
|
||||
license = "BSD-3-Clause"
|
||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
|
||||
description = "Spline interpolation made easy"
|
||||
@ -28,13 +28,13 @@ serialization = ["serde", "serde_derive"]
|
||||
std = []
|
||||
|
||||
[dependencies]
|
||||
cgmath = { version = "0.17", optional = true }
|
||||
cgmath = { version = ">=0.17, <0.19", 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 }
|
||||
serde = { 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]
|
||||
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
|
||||
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
|
||||
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
|
||||
|
||||
|
Reference in New Issue
Block a user