#ifndef RNG_H #define RNG_H #include "vec3.h" #include typedef struct { uint32_t state; } rng_t; rng_t rng_init(unsigned seed); double rng_double(rng_t *rng); vec3_t rng_vec3(rng_t *rng); #endif