vec2b
constvec2b: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.
Example
Section titled βExampleβconst vector = d.vec2b(); // (false, false)const vector = d.vec2b(true); // (true, true)const vector = d.vec2b(false, true); // (false, true)