aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/interpolation.rs6
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 {