Rebol Programming/arctangent

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

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."
]