1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-08 08:54:34 +05:30

bytebeat-render.js: define inverse trigonometric functions

This commit is contained in:
Intel A80486DX2-66 2024-07-12 03:01:58 +03:00
parent 5c1a4bfa08
commit 55b320d827
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -42,6 +42,12 @@ const SELECTED_TYPE = TYPE_BYTEBEAT // feel free to change this
// for bytebeat
const int = x => Math.floor(x)
const abs = Math.abs
const acos = Math.acos
const acosh = Math.acosh
const asin = Math.asin
const asinh = Math.asinh
const atan = Math.atan
const atanh = Math.atanh
const cbrt = Math.cbrt
const cos = Math.cos
const cosh = Math.cosh