pub trait Real: Copy + PartialEq + PartialOrd + One + Add<Self, Output = Self> + Sub<Self, Output = Self> + Mul<Self, Output = Self> + Div<Self, Output = Self> { }
Helper trait to implement lerp and remap.
lerp
remap