pub fn greater_than_equal<T: Number, const D: usize>(
    x: &TVec<T, D>,
    y: &TVec<T, D>
) -> TVec<bool, D>
Expand description

Component-wise >= comparison.

Examples:

assert_eq!(glm::vec3(true, true, false),
           glm::greater_than_equal(&glm::vec3(1.0, 3.0, 4.0),
                                   &glm::vec3(1.0, 2.0, 5.0)));

See also: