atan()#
The inverse of tan(), returns the arc tangent of a value.
Examples#
def setup():
a = py5.PI/3
t = py5.tan(a)
a_t = py5.atan(t)
# prints "1.04719757 : 1.73205087 : 1.04719757"
py5.println(round(a, 8), ':', round(t, 8), ':', round(a_t, 8))
def setup():
a = py5.PI + py5.PI/3
t = py5.tan(a)
a_t = py5.atan(t)
# prints "4.18879027 : 1.73205106 : 1.04719761"
py5.println(round(a, 8), ':', round(t, 8), ':', round(a_t, 8))
Description#
The inverse of tan(), returns the arc tangent of a value. This function expects the values in the range of -Infinity to Infinity and values are returned in the range -HALF_PI
to HALF_PI
.
This function makes a call to the numpy atan()
function.
Signatures#
atan(
value: Union[float, npt.ArrayLike] # value whose arc tangent is to be returned
) -> Union[float, npt.NDArray]
Updated on March 06, 2023 02:49:26am UTC