4 lines
95 B
Text
4 lines
95 B
Text
|
|
func random_normal(count) {
|
||
|
|
return sqrt(-2*log(random(count))) * cos(2*pi*random(count));
|
||
|
|
}
|