[]Function rusty_engine::prelude::glm::max3_scalar

pub fn max3_scalar<N>(a: N, b: N, c: N) -> N where
    N: Number

Returns the maximum among three values.

Examples:

assert_eq!(3.0, glm::max3_scalar(1.0, 2.0, 3.0));
assert_eq!(2, glm::max3_scalar(0, 1, 2));

See also: