Fix previous commit (new implementors).

This commit is contained in:
Dimitri Sabadie 2021-07-11 17:46:59 +02:00
parent b3836975c3
commit fc2f53200f
No known key found for this signature in database
GPG Key ID: B313786A66884DCD
3 changed files with 10 additions and 10 deletions

View File

@ -2,6 +2,7 @@
<!-- vim-markdown-toc GFM --> <!-- vim-markdown-toc GFM -->
* [4.0.3](#403)
* [4.0.2](#402) * [4.0.2](#402)
* [4.0.1](#401) * [4.0.1](#401)
* [4.0](#40) * [4.0](#40)
@ -41,12 +42,18 @@
<!-- vim-markdown-toc --> <!-- vim-markdown-toc -->
# 4.0.2 # 4.0.3
> Jul 11, 2021 > Jul 11, 2021
- Add more implementors for `Interpolate`. - Add more implementors for `Interpolate`.
# 4.0.2
> Jul 11, 2021
- **Yanked.**
# 4.0.1 # 4.0.1
> Jul 11, 2021 > Jul 11, 2021

View File

@ -1,6 +1,6 @@
[package] [package]
name = "splines" name = "splines"
version = "4.0.2" version = "4.0.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"

View File

@ -1,4 +1,4 @@
use crate::{impl_Interpolate, impl_InterpolateT!}; use crate::impl_Interpolate;
use cgmath::{Quaternion, Vector1, Vector2, Vector3, Vector4}; use cgmath::{Quaternion, Vector1, Vector2, Vector3, Vector4};
@ -13,10 +13,3 @@ impl_Interpolate!(f64, Vector2<f64>, std::f64::consts::PI);
impl_Interpolate!(f64, Vector3<f64>, std::f64::consts::PI); impl_Interpolate!(f64, Vector3<f64>, std::f64::consts::PI);
impl_Interpolate!(f64, Vector4<f64>, std::f64::consts::PI); impl_Interpolate!(f64, Vector4<f64>, std::f64::consts::PI);
impl_Interpolate!(f64, Quaternion<f64>, std::f64::consts::PI); impl_Interpolate!(f64, Quaternion<f64>, std::f64::consts::PI);
impl_InterpolateT!(f64, Vector1<f32>, std::f32::consts::PI);
impl_InterpolateT!(f64, Vector2<f32>, std::f32::consts::PI);
impl_InterpolateT!(f64, Vector3<f32>, std::f32::consts::PI);
impl_InterpolateT!(f64, Vector4<f32>, std::f32::consts::PI);
impl_InterpolateT!(f64, Quaternion<f32>, std::f32::consts::PI);