pub trait F64Ext {
    // Required method
    fn ext_lerp(self, other: f64, t: f64) -> f64;
}
Expand description

An extension trait for f32.

Required Methods§

fn ext_lerp(self, other: f64, t: f64) -> f64

Linearly interpolate between self and other with parameter t.

Implementations on Foreign Types§

§

impl F64Ext for f64

§

fn ext_lerp(self, other: f64, t: f64) -> f64

Implementors§