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.

Implementations on Foreign Types

impl GenFloat<f32> for f32
[src]

impl GenFloat<f64> for f64
[src]

Implementors