From 7fd1c555d1008a3d131d4acd5e3f0f7ca5b0e38c Mon Sep 17 00:00:00 2001 From: memdmp Date: Thu, 16 Jan 2025 17:29:36 +0100 Subject: feat: temp --- src/interpolation.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') 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(v: Vec, t: f64) -> T +where + T: Copy + Add + Sub + Mul, +{ + todo!() +} #[derive(Clone, Copy)] pub enum TwoValueTimingFunction { -- cgit v1.2.3