Rebol Programming/tangent

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
TANGENT value /radians 

DESCRIPTION:

[edit | edit source]

Returns the trigonometric tangent in degrees.

TANGENT is a native value.

ARGUMENTS

[edit | edit source]
  • value -- (Type: number)

REFINEMENTS

[edit | edit source]
  • /radians -- Value is specified in radians.

SOURCE CODE

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