Trait glm::GenFloat [] [src]

pub trait GenFloat<F: BaseFloat>: GenNum<F> + ApproxEq<BaseType = F> + SignedNum + Sub<F, Output = Self> {
    fn fma(&self, b: &Self, c: &Self) -> Self;
}

Generic float number type.

Required Methods

Computes and returns a * b + c.

Implementors