Function glm::builtin::greaterThanEqual [] [src]

pub fn greaterThanEqual<T: Primitive, B: GenBVec, V: VecRel<T, B>>(
    x: V,
    y: V
) -> B

Returns the component-wise compare of x ≥ y.

Example

use glm::*;

let a = ivec4(1, 2, 3, 4);
let b = ivec4(2, 2, 3, 3);
assert_eq!(greaterThanEqual(a, b), bvec4(false, true, true, true));
assert_eq!(greaterThanEqual(a, b), lessThanEqual(b, a));
assert_eq!(greaterThanEqual(a, b), not(lessThan(a, b)));