diff options
Diffstat (limited to 'src/interpolation.rs')
-rw-r--r-- | src/interpolation.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interpolation.rs b/src/interpolation.rs index 4543ffb..ecb2c85 100644 --- a/src/interpolation.rs +++ b/src/interpolation.rs @@ -19,6 +19,12 @@ where { a + (b - a) * t } +pub fn raw_bezier<T>(v: Vec<T>, t: f64) -> T +where + T: Copy + Add<Output = T> + Sub<Output = T> + Mul<f64, Output = T>, +{ + todo!() +} #[derive(Clone, Copy)] pub enum TwoValueTimingFunction { |