pub trait Curve {
// Required method
fn y(&self, p: f32) -> f32;
}Expand description
Required Methods§
Implementations on Foreign Types§
Source§impl<T: Curve + ?Sized> Curve for &T
Blanket impl for references, enabling &dyn Curve to work with ease().
impl<T: Curve + ?Sized> Curve for &T
Blanket impl for references, enabling &dyn Curve to work with ease().