Rebol Programming/arctangent
Appearance
USAGE:
[edit | edit source]ARCTANGENT value /radians
DESCRIPTION:
[edit | edit source]Returns the trigonometric arctangent in degrees.
ARCTANGENT is a native value.
ARGUMENTS
[edit | edit source]- value -- (Type: number)
REFINEMENTS
[edit | edit source]- /radians -- Returns result in radians.
SOURCE CODE
[edit | edit source]arctangent: native[ "Returns the trigonometric arctangent in degrees." value [number!] /radians "Returns result in radians." ]