mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
3 lines
168 B
Plaintext
3 lines
168 B
Plaintext
function sinh(x) { return (exp(x) - exp(-x)) / 2; }
|
|
function cosh(x) { return (exp(x) + exp(-x)) / 2; }
|
|
function tanh(x) { return (exp(2 * x) - 1) / (exp(2 * x) + 1); } |