Contents

random::half3_01_using

Generates a pseudo-random 3D vector with half-precision components between 0 and 1 using a specific seed.

Declaration

half3 random::half3_01_using(uint seed)

Parameters

  • seed:

    The base seed value to use for random number generation.

Return Value

A pseudo-random 3D half-precision vector with components in the range [0.0, 1.0].

Discussion

This function generates a random 3D vector where each component is independently generated in the range [0.0, 1.0] using half-precision floating-point format and sequential seed values (seed, seed+1, seed+2). The seed is not modified, allowing for reproducible random number generation.