vec3b
constvec3b:Vec3b
Defined in: packages/typegpu/src/data/vector.ts:185
Schema representing vec3<bool> - a vector with 3 elements of type bool.
Also a constructor function for this vector value.
Example
Section titled βExampleβconst vector = d.vec3b(); // (false, false, false)const vector = d.vec3b(true); // (true, true, true)const vector = d.vec3b(false, true, false); // (false, true, false)