mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-03-18 07:22:38 +00:00
13 lines
277 B
Plaintext
13 lines
277 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)\
|
|
)\
|
|
)\
|
|
)
|
|
|