f32
constf32:F32
Defined in: packages/typegpu/src/data/numeric.ts:185
A schema that represents a 32-bit float value. (equivalent to f32 in WGSL)
Can also be called to cast a value to an f32.
Examples
Section titled βExamplesβconst value = f32(); // 0const value = f32(1.23); // 1.23const value = f32(true); // 1