add documentation for new math functions

This commit is contained in:
りき萌 2024-09-07 15:39:29 +02:00
parent 4bf3d685b8
commit 4430d6d125
2 changed files with 212 additions and 2 deletions

View file

@ -272,8 +272,10 @@ pub mod fns {
math1 "sqrt" sqrtf,
math1 "cbrt" cbrtf,
math1 "exp" expf,
math1 "expMinus1" expm1f,
math1 "exp2" exp2f,
math1 "ln" logf,
math1 "ln1Plus" log1pf,
math1 "log2" log2f,
math1 "log10" log10f,
math2 "hypot" hypotf,
@ -284,8 +286,6 @@ pub mod fns {
math1 "acos" acosf,
math1 "atan" atanf,
math2 "atan2" atan2f,
math1 "expMinus1" expm1f,
math1 "ln1Plus" log1pf,
math1 "sinh" sinhf,
math1 "cosh" coshf,
math1 "tanh" tanhf,