Rebol Programming/arccosine

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

USAGE:[edit | edit source]

ARCCOSINE value /radians 

DESCRIPTION:[edit | edit source]

Returns the trigonometric arccosine in degrees.

ARCCOSINE 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]

arccosine: native[
    "Returns the trigonometric arccosine in degrees." 
    value [number!] 
    /radians "Returns result in radians."
]