mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-07-11 15:12:22 +01:00
13 lines
265 B
Plaintext
13 lines
265 B
Plaintext
#define EULERS_NUMBER 2.71828
|
|
|
|
proc/gaussian(var/amplitude, var/spread, var/dx, var/dy)
|
|
return amplitude * (
|
|
EULERS_NUMBER ** (\
|
|
-1 * (\
|
|
dx ** 2 / (2 * spread ** 2)\
|
|
+ dy ** 2 / (2 * spread ** 2)\
|
|
)\
|
|
)\
|
|
)
|
|
|