Files
godot/doc/classes
Jcrespo 528a76486c Add inverse hyperbolic functions asinh(), acosh() & atanh()
GDScript has the following built-in trigonometry functions:

- `sin()`
- `cos()`
- `tan()`
- `asin()`
- `acos()`
- `atan()`
- `atan()`
- `sinh()`
- `cosh()`
- `tanh()`

However, it lacks the hyperbolic arc (also known as inverse
hyperbolic) functions:

- `asinh()`
- `acosh()`
- `atanh()`

Implement them by just exposing the C++ Math library, but clamping
its values to the closest real defined value.
For the cosine, clamp input values lower than 1 to 1.
In the case of the tangent, where the limit value is infinite,
clamp it to -inf or +inf.

References #78377
Fixes godotengine/godot-proposals#7110
2023-09-01 01:27:56 +02:00
..
2023-08-04 16:29:55 +08:00
2023-08-02 09:54:20 +02:00
2023-08-11 20:31:08 +07:00
2023-08-22 18:05:50 +08:00
2023-07-19 19:56:06 +07:00
2023-08-22 18:05:50 +08:00
2023-07-24 18:37:23 +02:00
2023-08-29 15:02:26 +03:00
2023-08-11 11:41:49 +02:00
2023-08-22 18:05:50 +08:00
2023-08-16 11:03:18 +02:00
2023-08-07 13:09:47 +02:00
2023-08-22 18:05:50 +08:00
2023-08-22 18:05:50 +08:00
2023-08-26 21:34:21 +03:00