Function nalgebra_glm::not[][src]

pub fn not<const D: usize>(v: &TVec<bool, D>) -> TVec<bool, D>

Component-wise not !.

Examples:

let vec = glm::vec2(true, false);
assert_eq!(glm::vec2(false, true), glm::not(&vec));

See also: