formatting pass.

This commit is contained in:
NunoSempere 2023-07-22 19:25:36 +02:00
parent 36249ebf39
commit 57adb08057

View File

@ -50,7 +50,6 @@ float sample_uniform(float from, float to, uint32_t* seed)
return sample_unit_uniform(seed) * (to - from) + from; return sample_unit_uniform(seed) * (to - from) + from;
} }
float sample_normal(float mean, float sigma, uint32_t* seed) float sample_normal(float mean, float sigma, uint32_t* seed)
{ {
return (mean + sigma * sample_unit_normal(seed)); return (mean + sigma * sample_unit_normal(seed));