use crate::easing::Curve;
#[derive(Debug)]
pub struct InPiecewizePolynomial;
impl Curve for InPiecewizePolynomial {
#[inline]
fn y(&self, _p: f32) -> f32 {
unimplemented!()
}
}
#[derive(Debug)]
pub struct OutPiecewizePolynomial;
impl Curve for OutPiecewizePolynomial {
#[inline]
fn y(&self, _p: f32) -> f32 {
unimplemented!()
}
}