Rebol Programming/tangent
USAGE:
TANGENT value /radians
DESCRIPTION:
Returns the trigonometric tangent in degrees.
TANGENT is a native value.
ARGUMENTS
- value -- (Type: number)
REFINEMENTS
- /radians -- Value is specified in radians.
SOURCE CODE
tangent: native[
"Returns the trigonometric tangent in degrees."
value [number!]
/radians "Value is specified in radians."
]