You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FEAT: faster trigonometric functions (without conversions and bounds checks)
While the original functions SINE, COSINE, TANGENT and ARCTANGENT works also with degrees and do better output formating, these new functions: SIN, COS, TAN and ATAN expects only value in radians and are directly mapped to libc trigonometric functions. They will be faster, but one must expect different output in some cases!
Difference example:
>> tangent/radians (pi / 2)
== 1.#INF
>> tan (pi / 2)
== 1.633123935319537e16
NOTE: these functions are available only with INFINITY support (needs 1.#NaN value)
0 commit comments