Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
f6fa4ecbce | |||
e2f220ec15 | |||
c3670d6b0a | |||
c6ba8476f2 | |||
389f4d182d | |||
8af9151dac | |||
a82cf85619 | |||
37d3cc5f29 | |||
1e70ab882c | |||
2179c8300f | |||
e7a9723ae0 | |||
eca09f1baf | |||
e1b78070c6 | |||
cdc48a49a7 | |||
decd85dba2 | |||
df9815a464 | |||
ca8e797932 | |||
5b746aaf57 | |||
88a7ee7a8d | |||
5463fd11d6 |
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,7 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
<!-- vim-markdown-toc GFM -->
|
||||
|
||||
* [4.3.1](#431)
|
||||
* [4.3](#43)
|
||||
* [4.2](#42)
|
||||
* [4.1.1](#411)
|
||||
* [4.1](#41)
|
||||
* [4.0.3](#403)
|
||||
@ -42,13 +43,33 @@
|
||||
* [0.1.1](#011)
|
||||
* [0.1](#01)
|
||||
|
||||
<!-- vim-markdown-toc -->
|
||||
# 4.3.1
|
||||
|
||||
> Nov 22, 2023
|
||||
|
||||
- Add `Default` implementation for `Spline`. [c6ba847](https://github.com/phaazon/splines/commit/c6ba847)
|
||||
|
||||
# 4.3
|
||||
|
||||
> Sep 23, 2023
|
||||
|
||||
- Add support for `glam-0.23` and `glam-0.24`. [cdc48a4](https://github.com/phaazon/splines/commit/cdc48a4)
|
||||
- Add `Spline::clear` to clear a spline keys without deallocating its internal storage. [eca09f1](https://github.com/phaazon/splines/commit/eca09f1)
|
||||
|
||||
# 4.2
|
||||
|
||||
> Feb 1, 2023
|
||||
|
||||
- Add support for `glam-0.22`.
|
||||
- Add support for `nalgebra-0.32`.
|
||||
- Add deprecation lints for `impl-*` feature gates. Those shouldn’t be used anymore and the `*` variant should be
|
||||
preferred. For instance, if you used `impl-cgmath`, you should just use the `cgmath` feature gate now.
|
||||
|
||||
# 4.1.1
|
||||
|
||||
> Jul 27, 2022
|
||||
|
||||
- Internal enhancement of sampling splines by looking for control points. That brings the lookup from _O(1)_ to
|
||||
- Internal enhancement of sampling splines by looking for control points. That brings the lookup from _O(N)_ to
|
||||
_O(log(N))_. That is super embarassing because it should have been the default from the very first commit. Sorry
|
||||
about that.
|
||||
- Fix hermite cubic interpolation.
|
||||
|
14
Cargo.toml
14
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "splines"
|
||||
version = "4.1.1"
|
||||
version = "4.3.1"
|
||||
license = "BSD-3-Clause"
|
||||
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
|
||||
description = "Spline interpolation made easy"
|
||||
@ -13,12 +13,6 @@ readme = "README.md"
|
||||
|
||||
edition = "2021"
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "phaazon/splines", branch = "master" }
|
||||
is-it-maintained-issue-resolution = { repository = "phaazon/splines" }
|
||||
is-it-maintained-open-issues = { repository = "phaazon/splines" }
|
||||
maintenance = { status = "actively-developed" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
impl-cgmath = ["cgmath"]
|
||||
@ -29,8 +23,8 @@ std = []
|
||||
|
||||
[dependencies]
|
||||
cgmath = { version = ">=0.17, <0.19", optional = true }
|
||||
glam = { version = ">=0.10, <0.22", optional = true }
|
||||
nalgebra = { version = ">=0.21, <0.32", optional = true }
|
||||
glam = { version = ">=0.10, <0.25", optional = true }
|
||||
nalgebra = { version = ">=0.21, <0.33", optional = true }
|
||||
serde = { version = "1", features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
@ -38,7 +32,7 @@ float-cmp = ">=0.6, < 0.10"
|
||||
serde_json = "1"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
features = ["std", "cgmath", "glam", "nalgebra", "serde"]
|
||||
|
||||
[[example]]
|
||||
name = "hello-world"
|
||||
|
@ -1,6 +1,6 @@
|
||||
edition = "2018"
|
||||
|
||||
fn_args_layout = "Tall"
|
||||
fn_params_layout = "Tall"
|
||||
force_explicit_abi = true
|
||||
hard_tabs = false
|
||||
max_width = 100
|
||||
|
11
src/lib.rs
11
src/lib.rs
@ -108,6 +108,17 @@
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
#![cfg_attr(not(feature = "std"), feature(alloc))]
|
||||
#![cfg_attr(not(feature = "std"), feature(core_intrinsics))]
|
||||
#![cfg_attr(
|
||||
any(
|
||||
feature = "impl-cgmath",
|
||||
feature = "impl-glam",
|
||||
feature = "impl-nalgebra"
|
||||
),
|
||||
deprecated(
|
||||
since = "4.2.0",
|
||||
note = "you are using an impl-* feature gate; please switch to * (e.g. impl-cgmath becomes cgmath)"
|
||||
)
|
||||
)]
|
||||
|
||||
#[cfg(not(feature = "std"))]
|
||||
extern crate alloc;
|
||||
|
@ -27,7 +27,7 @@ use std::cmp::Ordering;
|
||||
/// for the required interpolation mode, you get `None`.
|
||||
/// - [`Spline::clamped_sample`]: behaves like [`Spline::sample`] but will return either the first
|
||||
/// or last key if out of bound; it will return `None` if not enough key.
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, Default)]
|
||||
#[cfg_attr(
|
||||
any(feature = "serialization", feature = "serde"),
|
||||
derive(Deserialize, Serialize)
|
||||
@ -56,6 +56,13 @@ impl<T, V> Spline<T, V> {
|
||||
spline
|
||||
}
|
||||
|
||||
/// Clear the spline by removing all keys. Keeps the underlying allocated storage, so adding
|
||||
/// new keys should be faster than creating a new [`Spline`]
|
||||
#[inline]
|
||||
pub fn clear(&mut self) {
|
||||
self.0.clear()
|
||||
}
|
||||
|
||||
/// Create a new spline by consuming an `Iterater<Item = Key<T>>`. They keys don’t have to be
|
||||
/// sorted.
|
||||
///
|
||||
|
Reference in New Issue
Block a user