pub trait Interpolatablewhere
    Self: Sized + Clone,{
    // Provided method
    fn interpolate(&self, other: &Self, t: f64) -> Self { ... }
}

Provided Methods§

source

fn interpolate(&self, other: &Self, t: f64) -> Self

Implementations on Foreign Types§

source§

impl<T: Interpolatable> Interpolatable for Option<T>

source§

fn interpolate(&self, other: &Self, t: f64) -> Self

source§

impl Interpolatable for isize

source§

fn interpolate(&self, other: &isize, t: f64) -> isize

source§

impl Interpolatable for usize

source§

fn interpolate(&self, other: &usize, t: f64) -> usize

source§

impl<I: Interpolatable> Interpolatable for Vec<I>

source§

fn interpolate(&self, other: &Self, t: f64) -> Self

source§

impl Interpolatable for bool

source§

fn interpolate(&self, other: &bool, t: f64) -> bool

source§

impl Interpolatable for f64

source§

fn interpolate(&self, other: &f64, t: f64) -> f64

source§

impl Interpolatable for String

Implementors§