REBOL Programming/sine

USAGE:

SINE value /radians 

DESCRIPTION:

Returns the trigonometric sine in degrees.

SINE is a native value.

ARGUMENTS

  • value -- (Type: number)

REFINEMENTS

  • /radians -- Value is specified in radians.

SOURCE CODE

sine: native[
    "Returns the trigonometric sine in degrees." 
    value [number!] 
    /radians "Value is specified in radians."
]
Last modified on 13 November 2012, at 10:49