How to add your knowledge

radians()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1
    4. 4. Example 2

    Synopsis

    Converts the input in degrees, into radians.

    Syntax

    Radians ( deg As Number ) As Number 
    Argument Type Description
    deg Number Angle in degrees.

    Example 1

    Intent >radians(180) 
    --> 3.142 

    Example 2

    Intent >radians(90) * 180.0 / m_pi 
    --> 90.0 
    This call takes the 90 degree input, converts it to radians with the function and then converts it back to degrees.