radians()

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.