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

An extension trait for f32.

Required Methods

Linearly interpolate between self and other with parameter t.

Implementations on Foreign Types

Implementors