Trait emath::Real

source ·
pub trait Real: Copy + PartialEq + PartialOrd + One + Add<Self, Output = Self> + Sub<Self, Output = Self> + Mul<Self, Output = Self> + Div<Self, Output = Self> { }
Expand description

Helper trait to implement lerp and remap.

Implementations on Foreign Types§

source§

impl Real for f32

source§

impl Real for f64

Implementors§