Rebol Programming/tangent

USAGE:Edit

TANGENT value /radians 

DESCRIPTION:Edit

Returns the trigonometric tangent in degrees.

TANGENT is a native value.

ARGUMENTSEdit

  • value -- (Type: number)

REFINEMENTSEdit

  • /radians -- Value is specified in radians.

SOURCE CODEEdit

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