Fix previous commit (new implementors).

This commit is contained in:
Dimitri Sabadie
2021-07-11 17:46:59 +02:00
parent b3836975c3
commit fc2f53200f
3 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
use crate::{impl_Interpolate, impl_InterpolateT!};
use crate::impl_Interpolate;
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, Vector4<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);