Skip to content

vec2b

const vec2b: Vec2b

Defined in: packages/typegpu/src/data/vector.ts:118

Schema representing vec2<bool> - a vector with 2 elements of type bool. Also a constructor function for this vector value.

const vector = d.vec2b(); // (false, false)
const vector = d.vec2b(true); // (true, true)
const vector = d.vec2b(false, true); // (false, true)