Rebol Programming/tangent

USAGE:

edit
TANGENT value /radians 

DESCRIPTION:

edit

Returns the trigonometric tangent in degrees.

TANGENT is a native value.

ARGUMENTS

edit
  • value -- (Type: number)

REFINEMENTS

edit
  • /radians -- Value is specified in radians.

SOURCE CODE

edit
tangent: native[
    "Returns the trigonometric tangent in degrees." 
    value [number!] 
    /radians "Value is specified in radians."
]